extend.js 87 B

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