timers-ext
Advanced tools
Comparing version 0.1.6 to 0.1.7
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.1.7"></a> | ||
## [0.1.7](https://github.com/medikoo/timers-ext/compare/v0.1.6...v0.1.7) (2018-10-04) | ||
### Bug Fixes | ||
* typo in error message ([36720cf](https://github.com/medikoo/timers-ext/commit/36720cf)) | ||
<a name="0.1.6"></a> | ||
@@ -7,0 +17,0 @@ ## [0.1.6](https://github.com/medikoo/timers-ext/compare/v0.1.5...v0.1.6) (2018-10-04) |
{ | ||
"name": "timers-ext", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "Timers extensions", | ||
@@ -5,0 +5,0 @@ "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)", |
@@ -20,3 +20,3 @@ "use strict"; | ||
customError( | ||
"Operation timeout (exceed " + | ||
"Operation timeout (exceeded " + | ||
(isValue(timeout) ? timeout + "ms" : "tick") + | ||
@@ -23,0 +23,0 @@ ")", |
@@ -11,5 +11,3 @@ "use strict"; | ||
new Promise(function (resolve) { | ||
setTimeout(function () { | ||
resolve("foo"); | ||
}, 20); | ||
setTimeout(function () { resolve("foo"); }, 20); | ||
}), | ||
@@ -31,5 +29,3 @@ 40 | ||
new Promise(function (resolve) { | ||
setTimeout(function () { | ||
resolve("foo"); | ||
}, 40); | ||
setTimeout(function () { resolve("foo"); }, 40); | ||
}), | ||
@@ -36,0 +32,0 @@ 20 |
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
14421
359