Innovenergy_trunk/frontend/node_modules/parse5/lib/common/utils.js

14 lines
321 B
JavaScript
Raw Normal View History

'use strict';
exports.mergeOptions = function (defaults, options) {
options = options || {};
return [defaults, options].reduce(function (merged, optObj) {
Object.keys(optObj).forEach(function (key) {
merged[key] = optObj[key];
});
return merged;
}, {});
};