Socket
Socket
Sign inDemoInstall

set-immediate-shim

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

6

index.js
'use strict';
module.exports = typeof setImmediate === 'function' ? setImmediate :
function setImmediate(fn) { setTimeout(fn, 0); };
function setImmediate() {
var args = [].slice.apply(arguments);
args.splice(1, 0, 0);
setTimeout.apply(null, args);
};

2

package.json
{
"name": "set-immediate-shim",
"version": "1.0.0",
"version": "1.0.1",
"description": "Simple setImmediate shim",

@@ -5,0 +5,0 @@ "license": "MIT",

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