Socket
Socket
Sign inDemoInstall

timers-browserify

Package Overview
Dependencies
5
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.2 to 2.0.3

7

CHANGELOG.md

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

## 2.0.3 - 2017-07-31
### Fixed
* `setImmediate` and `clearImmediate` are indirected through the `global` module
for better coverage of esoteric environments.
## 2.0.2 - 2016-10-19

@@ -7,0 +14,0 @@

5

main.js

@@ -52,3 +52,4 @@ var apply = Function.prototype.apply;

require("setimmediate");
exports.setImmediate = setImmediate;
exports.clearImmediate = clearImmediate;
var global = require("global");
exports.setImmediate = global.setImmediate;
exports.clearImmediate = global.clearImmediate;

7

package.json

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

"description": "timers module for browserify",
"version": "2.0.2",
"version": "2.0.3",
"homepage": "https://github.com/jryans/timers-browserify",

@@ -21,6 +21,9 @@ "bugs": "https://github.com/jryans/timers-browserify/issues",

"Jonathan Prins <jon@blip.tv>",
"Matt Esch <matt@mattesch.info>"
"Matt Esch <matt@mattesch.info>",
"taoqf <tao_qiufeng@126.com>",
"wtgtybhertgeghgtwtg <wtgtybhertgeghgtwtg@gmail.com>"
],
"main": "main.js",
"dependencies": {
"global": "^4.3.2",
"setimmediate": "^1.0.4"

@@ -27,0 +30,0 @@ },

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