aaac7fed
liuqimichale
add
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
'use strict';
var isObject = require('is-extendable');
var forIn = require('for-in');
function mixin(target, objects) {
if (!isObject(target)) {
throw new TypeError('mixin-object expects the first argument to be an object.');
}
var len = arguments.length, i = 0;
while (++i < len) {
var obj = arguments[i];
if (isObject(obj)) {
forIn(obj, copy, target);
}
}
return target;
}
/**
* copy properties from the source object to the
* target object.
*
* @param {*} `value`
* @param {String} `key`
*/
function copy(value, key) {
this[key] = value;
}
/**
* Expose `mixin`
*/
module.exports = mixin;
|