LimePot
76722fec47
Going to slowly work on a Bulma site, which will end up being the main site. Currently under the /BETA/ folder so Alpha site will still be main site.
6 lines
171 B
JavaScript
6 lines
171 B
JavaScript
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);
|