UNPKG

87 BJavaScriptView Raw
1module.exports = function(a, b) {
2 for (var p in b) {
3 a[p] = b[p];
4 }
5
6 return a;
7};