Comparing version 0.1.7 to 0.1.8
@@ -68,3 +68,3 @@ function ieConstructorName(constructor) { | ||
function freeze(object) { | ||
function freeze(object, objectFreezeHandler) { | ||
var objectsFrozen = []; | ||
@@ -94,2 +94,5 @@ var id = 0; | ||
} else { | ||
if (objectFreezeHandler) { | ||
objectFreezeHandler(object); | ||
} | ||
for (var prop in object) { | ||
@@ -96,0 +99,0 @@ if (object.hasOwnProperty(prop) && prop != '_icebox_constructorName') { |
{ | ||
"name": "icebox", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "Object serialization library", | ||
@@ -5,0 +5,0 @@ "main": "lib/icebox.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
7756
133