Skip to content

Commit

Permalink
Replace merge with assign (#673)
Browse files Browse the repository at this point in the history
* bump vertical-collection to v1.0.0-beta.13

* replace merge with assign
  • Loading branch information
fran-worley authored and alexander-alvarez committed Mar 15, 2019
1 parent 3b5782d commit f7f5423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/-private/global-options.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { merge } from '@ember/polyfills';
import { assign } from '@ember/polyfills';
import config from 'ember-get-config';

// eslint-disable-next-line ember-suave/no-direct-property-access
Expand All @@ -7,5 +7,5 @@ const globalOptions = config['ember-light-table'] || {};
export default globalOptions;

export function mergeOptionsWithGlobals(options) {
return merge(merge({}, globalOptions), options);
return assign(assign({}, globalOptions), options);
}

0 comments on commit f7f5423

Please sign in to comment.