Comparing version 0.1.1 to 0.1.2
@@ -173,6 +173,9 @@ /** | ||
}; | ||
exports[methodName].displayName = | ||
exports[methodName].name = "icepick." + methodName; | ||
}); | ||
// splice is special because it is variadic | ||
exports.splice = function (arr/*, args*/) { | ||
exports.splice = function splice(arr/*, args*/) { | ||
var newArr = arrayClone(arr), | ||
@@ -179,0 +182,0 @@ args = rest(arguments); |
{ | ||
"name": "icepick", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Utilities for working with frozen objects", | ||
@@ -5,0 +5,0 @@ "main": "icepick.js", |
Sorry, the diff of this file is not supported yet
20951
367