UNPKG

405 BJavaScriptView Raw
1import "core-js/modules/es.object.to-string.js";
2import merge from './lib/merge';
3
4// Returns the initialState of the app
5var main = function main() {
6 for (var _len = arguments.length, additions = new Array(_len), _key = 0; _key < _len; _key++) {
7 additions[_key] = arguments[_key];
8 }
9
10 return additions.reduce(function (acc, item) {
11 return merge(acc, item);
12 }, {});
13};
14
15export default main;
\No newline at end of file