You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 vuotta sitten
1234567891011
  1. module.exports = function (target) {
  2. for (var i = 1; i < arguments.length; i++) {
  3. var source = arguments[i];
  4. for (var key in source) {
  5. if (Object.prototype.hasOwnProperty.call(source, key)) {
  6. target[key] = source[key];
  7. }
  8. }
  9. }
  10. return target;
  11. };