Server IP : 162.213.251.212 / Your IP : 3.145.50.123 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/clarkesmusicservices.com/node_modules/concat-map/test/ |
Upload File : |
var concatMap = require('../'); var test = require('tape'); test('empty or not', function (t) { var xs = [ 1, 2, 3, 4, 5, 6 ]; var ixes = []; var ys = concatMap(xs, function (x, ix) { ixes.push(ix); return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; }); t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]); t.same(ixes, [ 0, 1, 2, 3, 4, 5 ]); t.end(); }); test('always something', function (t) { var xs = [ 'a', 'b', 'c', 'd' ]; var ys = concatMap(xs, function (x) { return x === 'b' ? [ 'B', 'B', 'B' ] : [ x ]; }); t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]); t.end(); }); test('scalars', function (t) { var xs = [ 'a', 'b', 'c', 'd' ]; var ys = concatMap(xs, function (x) { return x === 'b' ? [ 'B', 'B', 'B' ] : x; }); t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]); t.end(); }); test('undefs', function (t) { var xs = [ 'a', 'b', 'c', 'd' ]; var ys = concatMap(xs, function () {}); t.same(ys, [ undefined, undefined, undefined, undefined ]); t.end(); });