An open API service indexing awesome lists of open source software.

https://github.com/4d47/seq.uence


https://github.com/4d47/seq.uence

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

seq.uence
=========

Utility to sequentially apply a list of functions
and augmenting the arguments with the 'next' function;
helping decoupling asynchronous style functions.

```javascript
seq(
function(next) {
next(12)
},
function(luckyNumber) {
console.log( luckyNumber + 2 )
}
)
```