cos-nodejs-sdk-v5
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "cos-nodejs-sdk-v5", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "cos nodejs sdk v5", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -152,7 +152,5 @@ 'use strict'; | ||
function extend(target, source) { | ||
for (var method in source) { | ||
if (!target[method]) { | ||
target[method] = source[method]; | ||
} | ||
} | ||
each(source, function (val, key) { | ||
target[key] = source[key]; | ||
}); | ||
return target; | ||
@@ -159,0 +157,0 @@ } |
171450
4437