UNPKG

node-nlp

Version:

Library for NLU (Natural Language Understanding) done in Node.js

7 lines (6 loc) 171 B
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);