Skip to content

Commit 1678320

Browse files
authored
Update index.js
1 parent 110dba7 commit 1678320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
exports = module.exports = function (a, b) {
1717
if (a && b) {
1818
var allowedAttrs = Object.getOwnPropertyNames(b);
19-
console.log(allowedAttrs)
19+
2020
for (var allowedAttrs in b) {
2121
a[allowedAttrs] = b[allowedAttrs];
2222
}
2323
}
2424
return a;
25-
};
25+
};

0 commit comments

Comments
 (0)