unit tests part 3

This commit is contained in:
Christopher Hase 2025-03-31 14:27:20 +02:00
parent bd96958df5
commit 323cea883d
4661 changed files with 410946 additions and 5 deletions

6
node_modules/concat-map/example/map.js generated vendored Normal file
View file

@ -0,0 +1,6 @@
var concatMap = require('../');
var xs = [ 1, 2, 3, 4, 5, 6 ];
var ys = concatMap(xs, function (x) {
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
});
console.dir(ys);