https://github.com/4d47/seq.uence
https://github.com/4d47/seq.uence
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/4d47/seq.uence
- Owner: 4d47
- License: mit
- Created: 2012-04-21T11:42:34.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-11T11:37:27.000Z (over 11 years ago)
- Last Synced: 2025-02-04T13:48:59.482Z (3 months ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 )
}
)
```