Skip to content

Commit

Permalink
impr(seeder): Delete redundant .bind(this)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximelkin committed Oct 12, 2019
1 parent be2c53a commit 589025e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/seed/Seeder.js
Expand Up @@ -50,7 +50,7 @@ Seeder.prototype.make = function(name, config) {
this._ensureFolder(config)
.then(() => this._generateStubTemplate())
.then((tmpl) => this._writeNewSeed(name)(tmpl))
).bind(this);
);
};

// Lists all available seed files as a sorted array.
Expand Down

0 comments on commit 589025e

Please sign in to comment.