Skip to content

Commit

Permalink
fix(loader): remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Apr 8, 2019
1 parent dc77e9f commit 4a572ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ var loader = {
return fs
.readFileSync(path)
.toString()
.split('\n');
.trim()
.split("\n");
}
};

Expand Down

0 comments on commit 4a572ad

Please sign in to comment.