Skip to content

Commit

Permalink
use assign instead of merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bekzod committed Apr 3, 2019
1 parent 69fe819 commit 249313a
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({}, globalOptions, options);
}

0 comments on commit 249313a

Please sign in to comment.