Add Initial commit

This commit is contained in:
Lev
2021-06-16 17:23:26 -05:00
parent ab56bbf9fc
commit d3d84e81c3
816 changed files with 157084 additions and 0 deletions

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);