Comparing version 3.4.0 to 3.4.1
@@ -32,2 +32,4 @@ const fs = require('fs'); | ||
if (typeof object === 'object' || typeof object === 'function') { | ||
if (object === null) return object; | ||
return new Proxy(object, { | ||
@@ -49,2 +51,4 @@ get: (target, key) => _freeze(object[key]), | ||
if (typeof object === 'object' || typeof object === 'function') { | ||
if (object === null) return object; | ||
return new Proxy(object, { | ||
@@ -51,0 +55,0 @@ get: (target, key) => _protect(object[key]), |
@@ -16,3 +16,3 @@ { | ||
], | ||
"version": "3.4.0", | ||
"version": "3.4.1", | ||
"main": "index.js", | ||
@@ -19,0 +19,0 @@ "repository": { |
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
74044
1849