itchainer

1.1.1 • Public • Published

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);

Readme

Keywords

none

Package Sidebar

Install

npm i itchainer

Weekly Downloads

1

Version

1.1.1

License

ISC

Last publish

Collaborators

  • andrii_lolo