New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

concurrent

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

concurrent - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

lib/collections.js

9

lib/promise.js

@@ -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
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc