transducerJS is a transducer implementation in js based on Carlos Caballero's one
You can get it with npm:
npm i --save transducerJSconst { 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 ]First, clone this repo:
git clone https://github.com/pabloos/transducerJS.gitAdd changes and keep the tests suites passed:
npm testPull 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.
Thanks Carlos Caballero, who make the first implementation