Skip to content

Commit

Permalink
style(utils/promisify): add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Feb 8, 2018
1 parent 2a6ec79 commit 4e15c1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/promisify.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const stat = (inputFileSystem, path) => {
resolve(stats);
});
});
}
};

export const readFile = (inputFileSystem, path) => {
return new Promise((resolve, reject) => {
Expand All @@ -18,4 +18,4 @@ export const readFile = (inputFileSystem, path) => {
resolve(stats);
});
});
}
};

0 comments on commit 4e15c1c

Please sign in to comment.