Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

timers-browserify

Package Overview
Dependencies
Maintainers
39
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timers-browserify - npm Package Compare versions

Comparing version 2.0.5 to 2.0.6

6

CHANGELOG.md

@@ -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 @@

8

main.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc