Welcome to mirror list, hosted at ThFree Co, Russian Federation.

map.js « example « concat-map « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33656217b61d8f06a55db4631ec95eea828495d2 (plain)
1
2
3
4
5
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);