We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dad0c1 commit f58780fCopy full SHA for f58780f
index.js
@@ -66,7 +66,7 @@ var workflow = {
66
}
67
},
68
configure: function(options) {
69
- _.extend(settings, options);
+ _.assignIn(settings, options);
70
71
72
hasLogLevel: function(level) {
@@ -306,6 +306,6 @@ var workflow = {
306
307
308
309
-_.extend(wfLoader, workflow);
+_.assignIn(wfLoader, workflow);
310
311
module.exports = wfLoader;
tasks/readJson.js
@@ -7,7 +7,7 @@ module.exports = function(definition) {
7
var jsonPath = context.get(definition.path)
8
jsonPath = path.resolve(jsonPath)
9
var content = require(jsonPath)
10
- content = _.extend({}, content)
+ content = _.assignIn({}, content)
11
done(null, content)
12
13
0 commit comments