Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yarn

Package Overview
Dependencies
Maintainers
1
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yarn - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json

@@ -5,3 +5,3 @@ {

"description": "A simple asynchronous routing pattern.",
"version": "0.1.2",
"version": "0.1.3",
"repository": {

@@ -8,0 +8,0 @@ "type": "git",

@@ -8,3 +8,5 @@ var yarn = function(initial) {

function makeNext(clewIndex){
return function(i){ return next(i, clewIndex); };
var f = function(i){ return next(i, clewIndex); };
f.error = function(){ if (clew.error) clew.error.apply(null, arguments); };
return f;
}

@@ -15,2 +17,5 @@ function add(){

}
add.error = function(cb){
clew.error = cb;
};

@@ -17,0 +22,0 @@ setTimeout(function(){ initial.call(makeNext(0)); }, 0);

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