UNPKG

225 BJavaScriptView Raw
1import "core-js/modules/es.array.reduce.js";
2import merge from './lib/merge';
3
4// Returns the initialState of the app
5const main = (...additions) => additions.reduce((acc, item) => merge(acc, item), {});
6
7export default main;
\No newline at end of file