timers-browserify
Advanced tools
Comparing version 2.0.5 to 2.0.6
@@ -5,2 +5,8 @@ # Change Log | ||
## 2.0.6 - 2018-01-24 | ||
### Fixed | ||
* Use `typeof` to search globals more carefully. | ||
## 2.0.5 - 2018-01-23 | ||
@@ -7,0 +13,0 @@ |
@@ -55,3 +55,7 @@ var apply = Function.prototype.apply; | ||
// `setimmediate` library. | ||
exports.setImmediate = self && self.setImmediate || global && global.setImmediate || this && this.setImmediate; | ||
exports.clearImmediate = self && self.clearImmediate || global && global.clearImmediate || this && this.clearImmediate; | ||
exports.setImmediate = (typeof self !== "undefined" && self.setImmediate) || | ||
(typeof global !== "undefined" && global.setImmediate) || | ||
(this && this.setImmediate); | ||
exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) || | ||
(typeof global !== "undefined" && global.clearImmediate) || | ||
(this && this.clearImmediate); |
@@ -5,3 +5,3 @@ { | ||
"description": "timers module for browserify", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"homepage": "https://github.com/jryans/timers-browserify", | ||
@@ -8,0 +8,0 @@ "bugs": "https://github.com/jryans/timers-browserify/issues", |
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
9583
52