1.1.1 • Published 10 years ago

itchainer v1.1.1

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

10 years ago

1.1.0

10 years ago

1.0.8

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.0

10 years ago