1.1.1 • Published 8 years ago

itchainer v1.1.1

Weekly downloads
3
License
ISC
Repository
github
Last release
8 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

8 years ago

1.1.0

8 years ago

1.0.8

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.0

8 years ago