test-agent
Advanced tools
Comparing version 0.23.9 to 0.23.10
@@ -69,18 +69,15 @@ (function(window) { | ||
extend: function extend(target, obj1, objN) { | ||
var result = target || {}; | ||
extend: function extend(target) { | ||
var result = target || {}, | ||
objs = Array.slice(arguments, 1); | ||
for (var key in obj1) { | ||
if (obj1.hasOwnProperty(key)) { | ||
result[key] = obj1[key]; | ||
return objs.reduce(function(result, obj) { | ||
for (var key in obj) { | ||
if (obj.hasOwnProperty(key)) { | ||
result[key] = obj[key]; | ||
} | ||
} | ||
} | ||
for (var key in objN) { | ||
if (objN.hasOwnProperty(key)) { | ||
result[key] = objN[key]; | ||
} | ||
} | ||
return result; | ||
return result; | ||
}, result); | ||
}, | ||
@@ -87,0 +84,0 @@ |
{ | ||
"name": "test-agent", | ||
"version": "0.23.9", | ||
"version": "0.23.10", | ||
"author": "James Lal", | ||
@@ -5,0 +5,0 @@ "description": "execute client side tests from browser report back to cli", |
Sorry, the diff of this file is too big to display
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
252588
7876