@nx-js/observer-util
Advanced tools
Comparing version 4.2.1 to 4.2.2
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85491