1.1.1 • Published 9 years ago

itchainer v1.1.1

Weekly downloads
3
License
ISC
Repository
github
Last release
9 years ago

itChainer

Installation

npm i itchainer

example:

'use strict';
const itchainer = require('itChainer').chain;
let Arr = [1, 2, 3];

let result = itchainer(Arr)
    .map((el) => {
        return el *2;
    })
    .map((el) => {
        return el + 1;
    })
    .run();


console.log(result);
1.1.1

9 years ago

1.1.0

9 years ago

1.0.8

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.0

9 years ago