Skip to content

Commit

Permalink
Merge pull request adopted-ember-addons#681 from bekzod/use-assign-2
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer authored Apr 20, 2019
2 parents 69fe819 + 249313a commit 43a34f5
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 43a34f5

Please sign in to comment.