CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
README.markdown63 linesDownload Raw Back to concat-map
1concat-map2==========3 4Concatenative mapdashery.5 6[![browser support](http://ci.testling.com/substack/node-concat-map.png)](http://ci.testling.com/substack/node-concat-map)7 8[![build status](https://secure.travis-ci.org/substack/node-concat-map.png)](http://travis-ci.org/substack/node-concat-map)9 10example11=======12 13``` js14var concatMap = require('concat-map');15var xs = [ 1, 2, 3, 4, 5, 6 ];16var ys = concatMap(xs, function (x) {17    return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];18});19console.dir(ys);20```21 22***23 24```25[ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]26```27 28methods29=======30 31``` js32var concatMap = require('concat-map')33```34 35concatMap(xs, fn)36-----------------37 38Return an array of concatenated elements by calling `fn(x, i)` for each element39`x` and each index `i` in the array `xs`.40 41When `fn(x, i)` returns an array, its result will be concatenated with the42result array. If `fn(x, i)` returns anything else, that value will be pushed43onto the end of the result array.44 45install46=======47 48With [npm](http://npmjs.org) do:49 50```51npm install concat-map52```53 54license55=======56 57MIT58 59notes60=====61 62This module was written while sitting high above the ground in a tree.63