/
eapostnova
/
2026-1--study--simulation-modeling
Обзор
Документация
Войти
/
eapostnova
/
2026-1--study--simulation-modeling
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
3
CI/CD
Аналитика
Безопасность
develop
node_modules/JSONStream/test/map.js
38 строк
767 B
Елизавета Постнова
chore(site): add changelog
06 мар 2026, 00:34
Верифицирован
06 мар 2026, 00:34
8cca814
Код
Авторство
О чём код?
var test = require('tape') var JSONStream = require('../') test('map function', function (t) { var actual = [] stream = JSONStream.parse([true], function (e) { return e*10 }) stream.on('data', function (v) { actual.push(v)}) stream.on('end', function () { t.deepEqual(actual, [10,20,30,40,50,60]) t.end() }) stream.write(JSON.stringify([1,2,3,4,5,6], null, 2)) stream.end() }) test('filter function', function (t) { var actual = [] stream = JSONStream .parse([true], function (e) { return e%2 ? e : null}) .on('data', function (v) { actual.push(v)}) .on('end', function () { t.deepEqual(actual, [1,3,5]) t.end() }) stream.write(JSON.stringify([1,2,3,4,5,6], null, 2)) stream.end() })