Socket
Socket
Sign inDemoInstall

zone.js

Package Overview
Dependencies
Maintainers
1
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zone.js - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3

2

package.json
{
"name": "zone.js",
"version": "0.4.2",
"version": "0.4.3",
"description": "Zones for JavaScript",

@@ -5,0 +5,0 @@ "main": "zone.js",

@@ -126,6 +126,6 @@ 'use strict';

zone[setName] = function (fn) {
var id;
var id, fnRef = fn;
arguments[0] = function () {
delete ids[id];
return fn.apply(this, arguments);
return fnRef.apply(this, arguments);
};

@@ -168,4 +168,5 @@ var args = bindArgs(arguments);

zone[name] = function (fn) {
var fnRef = fn;
arguments[0] = function () {
return fn.apply(this, arguments);
return fnRef.apply(this, arguments);
};

@@ -172,0 +173,0 @@ var args = Zone.bindArgumentsOnce(arguments);

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