Comparing version 0.2.1 to 0.2.2
@@ -95,5 +95,5 @@ /* This Source Code Form is subject to the terms of the Mozilla Public | ||
function copyInto(oldObj, newObj) { | ||
Object.keys(oldObj).forEach(function(k) { | ||
newObj[k] = oldObj[k]; | ||
}); | ||
for (var k in oldObj) { | ||
if (oldObj.hasOwnProperty(k)) newObj[k] = oldObj[k]; | ||
} | ||
} | ||
@@ -100,0 +100,0 @@ |
{ | ||
"name": "jwcrypto" | ||
, "version": "0.2.1" | ||
, "version": "0.2.2" | ||
, "dependencies": { | ||
@@ -5,0 +5,0 @@ "browserify": "1.8.1", |
Sorry, the diff of this file is not supported yet
290487