Skip to content

Commit

Permalink
addressing-7747;-config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pjmattingly committed Jul 22, 2022
1 parent bb37f4f commit e690267
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/classes/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';

const _ = require('lodash');
const path = require('path');

class Config {
Expand All @@ -12,7 +11,7 @@ class Config {
}

update(config) {
return _.merge(this, config);
return Object.assign(this, config);
}

get servicePath() {
Expand Down

0 comments on commit e690267

Please sign in to comment.