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.
20 lines
469 B
20 lines
469 B
"use strict"; |
|
|
|
var isValue = require("./is-value"); |
|
|
|
var forEach = Array.prototype.forEach, create = Object.create; |
|
|
|
var process = function (src, obj) { |
|
var key; |
|
for (key in src) obj[key] = src[key]; |
|
}; |
|
|
|
// eslint-disable-next-line no-unused-vars |
|
module.exports = function (opts1 /*, …options*/) { |
|
var result = create(null); |
|
forEach.call(arguments, function (options) { |
|
if (!isValue(options)) return; |
|
process(Object(options), result); |
|
}); |
|
return result; |
|
};
|
|
|