Skip to content

trandsducerJS is a transducer implementation in js

License

Notifications You must be signed in to change notification settings

pabloos/transducerJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔋 🔋 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