objectlisteners
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -600,10 +600,6 @@ | ||
return function stringifyFast(obj, space) { | ||
try { | ||
parents.push(obj); | ||
return JSON.stringify(obj, checkValues, space); | ||
} catch(er) { | ||
console.error(obj, er); | ||
} finally { | ||
clear(); | ||
} | ||
parents.push(obj); | ||
let res = JSON.stringify(obj, checkValues, space); | ||
clear(); | ||
return res; | ||
} | ||
@@ -610,0 +606,0 @@ })(); |
{ | ||
"name": "objectlisteners", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Creates arbitrary event listeners that you can use to watch for changes in an object and fire event subscriptions ", | ||
@@ -5,0 +5,0 @@ "main": "ObjectListener.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
60979
601