Socket
Socket
Sign inDemoInstall

@nx-js/observer-util

Package Overview
Dependencies
0
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.2.1 to 4.2.2

2

dist/cjs.es5.js

@@ -339,3 +339,3 @@ 'use strict';

// eslint-disable-next-line
var globalObj = Function("return this")();
var globalObj = typeof window === 'object' ? window : Function('return this')();

@@ -342,0 +342,0 @@ // built-in object can not be wrapped by Proxies

@@ -318,3 +318,3 @@ 'use strict';

// eslint-disable-next-line
const globalObj = Function("return this")();
const globalObj = typeof window === 'object' ? window : Function('return this')();

@@ -321,0 +321,0 @@ // built-in object can not be wrapped by Proxies

@@ -335,3 +335,3 @@ var connectionStore = new WeakMap();

// eslint-disable-next-line
var globalObj = Function("return this")();
var globalObj = typeof window === 'object' ? window : Function('return this')();

@@ -338,0 +338,0 @@ // built-in object can not be wrapped by Proxies

@@ -314,3 +314,3 @@ const connectionStore = new WeakMap();

// eslint-disable-next-line
const globalObj = Function("return this")();
const globalObj = typeof window === 'object' ? window : Function('return this')();

@@ -317,0 +317,0 @@ // built-in object can not be wrapped by Proxies

{
"name": "@nx-js/observer-util",
"version": "4.2.1",
"version": "4.2.2",
"description": "Simple transparent reactivity with 100% language coverage. Made with ES6 Proxies.",

@@ -5,0 +5,0 @@ "main": "dist/cjs.es5.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc