mirror of https://github.com/lukechilds/node.git
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.
18 lines
387 B
18 lines
387 B
10 years ago
|
'use strict';
|
||
|
|
||
|
var forEach = Array.prototype.forEach, create = Object.create;
|
||
|
|
||
|
var process = function (src, obj) {
|
||
|
var key;
|
||
|
for (key in src) obj[key] = src[key];
|
||
|
};
|
||
|
|
||
|
module.exports = function (options/*, …options*/) {
|
||
|
var result = create(null);
|
||
|
forEach.call(arguments, function (options) {
|
||
|
if (options == null) return;
|
||
|
process(Object(options), result);
|
||
|
});
|
||
|
return result;
|
||
|
};
|