concurrent
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -0,12 +1,5 @@ | ||
var next = require('./next'); | ||
var State = require('./state'); | ||
/** | ||
* Executes a function asynchronously. Prefers setImmediate but will fallback to | ||
* process.nextTick for older versions of node. | ||
* | ||
* @type {Function} | ||
*/ | ||
var next = typeof setImmediate === 'function' ? setImmediate : process.nextTick; | ||
/** | ||
* Resolves the promises asynchronously | ||
@@ -13,0 +6,0 @@ * |
{ | ||
"name": "concurrent", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Promises/A+ with Scala awesomeness", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,1 +5,18 @@ Concurrent | ||
Promises/A+ with Scala awesomeness [![Build Status](https://travis-ci.org/pspeter3/concurrent.png)](https://travis-ci.org/pspeter3/concurrent) | ||
Credits | ||
------- | ||
There was a lot of inspiration for this project and getting it done. I would | ||
like to thank: | ||
- [@brikis98](https://github.com/brikis98) for helping me come up with the idea | ||
- [Promises, understanding by doing](http://modernjavascript.blogspot.com/2013/08/promisesa-understanding-by-doing.html) for the initial promise spec | ||
- [cujos/when](https://github.com/cujojs/when) for fully featured examples | ||
- [aheckmann/mpromise](https://github.com/aheckmann/mpromise) for node.js specific implementation | ||
- [promises-aplus/promises-tests](https://github.com/promises-aplus/promises-tests) for the test suite | ||
License | ||
------- | ||
This is licensed under the MIT license. See the LICENSE file |
30064
14
930
22