Comparing version 3.4.3 to 3.4.4
@@ -17,3 +17,5 @@ /** @license MIT License (c) copyright 2010-2014 original author or authors */ | ||
} catch (e) { | ||
setTimer = function(f, ms) { return setTimeout(f, ms); }; | ||
// NOTE: Truncate decimals to workaround node 0.10.30 bug: | ||
// https://github.com/joyent/node/issues/8167 | ||
setTimer = function(f, ms) { return setTimeout(f, ms|0); }; | ||
clearTimer = function(t) { return clearTimeout(t); }; | ||
@@ -20,0 +22,0 @@ } |
{ | ||
"name": "when", | ||
"version": "3.4.3", | ||
"version": "3.4.4", | ||
"description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -8,3 +8,3 @@ /** @license MIT License (c) copyright 2010-2014 original author or authors */ | ||
* @author John Hann | ||
* @version 3.4.3 | ||
* @version 3.4.4 | ||
*/ | ||
@@ -11,0 +11,0 @@ (function(define) { 'use strict'; |
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
143549
4267