chalkedgoose / calba1114-autoscrape

The reason @alba/autoscrape was created was an effort to facilitate the process of scraping and analyzing any HTML or XHTML page. You can use powerful Array methods like reduce, map, filter in order to sort and search through a list of objects containing HTML data in key pair values.
https://www.npmjs.com/package/@calba1114/autoscrape
2 stars 0 forks source link

Introduce Transreducer API #2

Closed chalkedgoose closed 4 years ago

chalkedgoose commented 4 years ago

Introduce a Transreducer API for a quick and easy to use alternative to piping data multiple times with filter, reduce and map.

An example could look like this results = objects.trans(... conditions); results.forEach( e => console.log(e))

chalkedgoose commented 4 years ago

Could use document.querySelectorAll with several conditions.

chalkedgoose commented 4 years ago

Transreducer completed