13 lines
348 B
JavaScript
13 lines
348 B
JavaScript
'use strict';
|
|
|
|
module.exports = function mergeOptions(defaults, options) {
|
|
options = options || Object.create(null);
|
|
|
|
return [defaults, options].reduce(function (merged, optObj) {
|
|
Object.keys(optObj).forEach(function (key) {
|
|
merged[key] = optObj[key];
|
|
});
|
|
|
|
return merged;
|
|
}, Object.create(null));
|
|
};
|