pabloos / transducerJS

trandsducerJS is a transducer implementation in js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🔋 🔋 transducerJS

transducerJS is a transducer implementation in js based on Carlos Caballero's one

Installation

You can get it with npm:

npm i --save transducerJS

Usage

const { transducer, filter, map } = require('transducerjs')

const numbers = [1, 2, 3]
const result = transducer(map(x => x * 2), filter(x => x > 2))(numbers)

console.log(result) // [ 4, 6 ]

Contributing

First, clone this repo:

git clone https://github.com/pabloos/transducerJS.git

Add changes and keep the tests suites passed:

npm test

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Acknowledgment

Thanks Carlos Caballero, who make the first implementation

License

MIT

About

trandsducerJS is a transducer implementation in js

License:MIT License


Languages

Language:JavaScript 100.0%