UNPKG

babel-preset-test-bundled-dependencies

Version:

Allow custom config for create-react-app without ejecting

14 lines (10 loc) 321 B
'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; }, {}); };