Socket
Socket
Sign inDemoInstall

timers-browserify

Package Overview
Dependencies
1
Maintainers
39
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.8 to 2.0.9

6

CHANGELOG.md

@@ -5,2 +5,8 @@ # Change Log

## 2.0.9 - 2018-04-17
### Fixed
* Guard `self` usage in scope to avoid Webpack reference errors
## 2.0.8 - 2018-04-17

@@ -7,0 +13,0 @@

4

main.js

@@ -1,2 +0,2 @@

var scope = self || window;
var scope = (typeof self !== "undefined" && self) || window;
var apply = Function.prototype.apply;

@@ -53,3 +53,3 @@

require("setimmediate");
// On some exotic environments, it's not clear which object `setimmeidate` was
// On some exotic environments, it's not clear which object `setimmediate` was
// able to install onto. Search each possibility in the same order as the

@@ -56,0 +56,0 @@ // `setimmediate` library.

@@ -5,3 +5,3 @@ {

"description": "timers module for browserify",
"version": "2.0.8",
"version": "2.0.9",
"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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc