0.3.1 • Published 3 years ago

transducerjs v0.3.1

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

:battery: :battery: 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