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.9 to 2.0.10

6

CHANGELOG.md

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

## 2.0.10 - 2018-04-18
### Fixed
* Guard `global` usage in scope to avoid reference errors
## 2.0.9 - 2018-04-17

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

4

main.js

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

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

@@ -3,0 +5,0 @@

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

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