"> supports-preserve-symlinks-flag 30f7226d9a first commit il y a 3 ans tailwind-color-palette 30f7226d9a first commit il y a 3 ans tailwindcss 30f7226d9a first commit il y a 3 ans thenify 30f7226d9a first commit il y a 3 ans thenify-all 30f7226d9a first commit il y a 3 ans to-regex-range 30f7226d9a first commit il y a 3 ans tr46 30f7226d9a first commit il y a 3 ans ts-interface-checker 30f7226d9a first commit il y a 3 ans uglify-js 30f7226d9a first commit il y a 3 ans underscore 30f7226d9a first commit il y a 3 ans upper-case 30f7226d9a first commit il y a 3 ans util-deprecate 30f7226d9a first commit il y a 3 ans valid-data-url 30f7226d9a first commit il y a 3 ans web-resource-inliner 30f7226d9a first commit il y a 3 ans webidl-conversions 30f7226d9a first commit il y a 3 ans whatwg-url 30f7226d9a first commit il y a 3 ans wrap-ansi 30f7226d9a first commit il y a 3 ans wrappy 30f7226d9a first commit il y a 3 ans y18n 30f7226d9a first commit il y a 3 ans yallist 30f7226d9a first commit il y a 3 ans yaml 30f7226d9a first commit il y a 3 ans yargs 30f7226d9a first commit il y a 3 ans yargs-parser 30f7226d9a first commit il y a 3 ans .yarn-integrity 30f7226d9a first commit il y a 3 ans tum/network_report_server - Gogs: Simplico Git Service

Нема описа

README.markdown 1.1KB

concat-map

Concatenative mapdashery.

browser support

build status

example

var concatMap = require('concat-map');
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);

[ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]

methods

var concatMap = require('concat-map')

concatMap(xs, fn)

Return an array of concatenated elements by calling fn(x, i) for each element x and each index i in the array xs.

When fn(x, i) returns an array, its result will be concatenated with the result array. If fn(x, i) returns anything else, that value will be pushed onto the end of the result array.

install

With npm do:

npm install concat-map

license

MIT

notes

This module was written while sitting high above the ground in a tree.