nodent-runtime
Advanced tools
Comparing version 3.2.0 to 3.2.1
{ | ||
"name": "nodent-runtime", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "Runtime component of nodent", | ||
@@ -5,0 +5,0 @@ "main": "runtime.js", |
@@ -76,2 +76,6 @@ "use strict"; | ||
function boundThen() { | ||
return resolver.apply(self,arguments); | ||
} | ||
var resolver = this; | ||
@@ -96,5 +100,3 @@ switch (catcher) { | ||
} | ||
function boundThen() { | ||
return resolver.apply(self,arguments); | ||
} | ||
}) ; | ||
@@ -101,0 +103,0 @@ |
@@ -30,2 +30,8 @@ module.exports = function() { | ||
function _unchained(v){} | ||
function thenChain(res,rej){ | ||
this.resolve = res; | ||
this.reject = rej; | ||
} | ||
function Chained() {}; | ||
@@ -37,7 +43,2 @@ Chained.prototype = { | ||
}; | ||
function _unchained(v){} | ||
function thenChain(res,rej){ | ||
this.resolve = res; | ||
this.reject = rej; | ||
} | ||
@@ -44,0 +45,0 @@ function then(res,rej){ |
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
17730