Comparing version 0.1.2 to 0.1.3
@@ -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); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4591
22