Skip to content

Commit 5726a55

Browse files
committed
Fix an eslint warning about a missing trailing comma
1 parent 2bd208d commit 5726a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function loader(source) {
1414
const pegOptions = {
1515
output: 'source',
1616
cache: cacheParserResults,
17-
optimize: optimizeParser
17+
optimize: optimizeParser,
1818
};
1919

2020
return `module.exports = ${pegjs.buildParser(source, pegOptions)};`;

0 commit comments

Comments
 (0)