Create merge function

This commit is contained in:
Blade Barringer
2015-09-22 13:00:46 -05:00
parent ed5abf44e1
commit 7948e8a8e2
6 changed files with 62 additions and 49 deletions

View File

@@ -1,12 +1,9 @@
import {assign} from 'lodash';
import {merge} from '../helpers';
import dropEggs from './drops';
import questEggs from './quest';
let allEggs = {};
assign(allEggs, dropEggs);
assign(allEggs, questEggs);
let allEggs = merge([dropEggs, questEggs]);
export default {
allEggs: allEggs,