Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

proxy-handlers

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

proxy-handlers - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "proxy-handlers",
"version": "0.0.1",
"version": "0.0.2",
"description": "Predefined ES6 Proxy handlers",

@@ -5,0 +5,0 @@ "main": "proxy-handlers.js",

@@ -40,15 +40,15 @@ /*

* Exports:
* - Proxy.DelegatingHandler
* - Proxy.ForwardingHandler
* - Proxy.VirtualHandler
* - DelegatingHandler
* - ForwardingHandler
* - VirtualHandler
*/
(function(global) { // function-as-module pattern
(function(exports) { // function-as-module pattern
"use strict";
if (typeof Proxy === "undefined") {
throw new Error("require ECMAScript 6 Proxy constructor");
}
if (typeof Reflect === "undefined") {
throw new Error("require ECMAScript 6 Reflect module");
}
if (typeof Proxy === "undefined") {
throw new Error("require ECMAScript 6 Proxy constructor");
}
if (typeof Reflect === "undefined") {
throw new Error("require ECMAScript 6 Reflect module");
}

@@ -452,6 +452,6 @@ // == auxiliaries ==

Proxy.DelegatingHandler = DelegatingHandler;
Proxy.ForwardingHandler = ForwardingHandler;
Proxy.VirtualHandler = VirtualHandler;
exports.DelegatingHandler = DelegatingHandler;
exports.ForwardingHandler = ForwardingHandler;
exports.VirtualHandler = VirtualHandler;
}(typeof exports !== 'undefined' ? global : this)); // function-as-module pattern
}(typeof exports !== 'undefined' ? exports : this)); // function-as-module pattern
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