callback-registry
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -33,6 +33,9 @@ module.exports = function () { | ||
var args = [].splice.call(arguments, 1); | ||
var results = []; | ||
callbacksForKey.forEach(function (callback) { | ||
callback.apply(undefined, args); | ||
var result = callback.apply(undefined, args); | ||
results.push(result); | ||
}); | ||
return results; | ||
} | ||
@@ -39,0 +42,0 @@ |
{ | ||
"name": "callback-registry", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Registry for callbacks", | ||
@@ -29,3 +29,6 @@ "main": "./lib/index.js", | ||
"mocha": "^2.5.3" | ||
}, | ||
"publishConfig":{ | ||
"registry":"https://registry.npmjs.org" | ||
} | ||
} |
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
12154
102