react-native-parse-html
Version:
WHATWG HTML5 specification-compliant, fast and ready for production HTML parsing/serialization toolset for Node.js
14 lines (10 loc) • 348 B
JavaScript
;
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));
};