Skip to content

Commit 6223a9c

Browse files
committed
Correcting minor stylistic issue that codacy reported
1 parent 3dbb502 commit 6223a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/seeder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function getSeedsAtLocation(location) {
111111
* @param {string[]} sources The filenames to scrape for seeds
112112
*/
113113
function locateSeeds(sources = [], cwd = process.cwd()) {
114-
const locations = sources.map(source => path.join(cwd, source));
114+
const locations = sources.map((source) => path.join(cwd, source));
115115
return BbPromise.map(locations, (location) => {
116116
return fileExists(location).then((exists) => {
117117
if(!exists) {

0 commit comments

Comments
 (0)