summaryrefslogtreecommitdiff
path: root/src/parser/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/index.ts')
-rw-r--r--src/parser/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parser/index.ts b/src/parser/index.ts
index 366042c..912e6f2 100644
--- a/src/parser/index.ts
+++ b/src/parser/index.ts
@@ -2,5 +2,6 @@ export * from './generate';
export * from './parser';
import * as peggy from './parser';
-export const peggyParse = (source: string): peggy.ContinuationExpression[] =>
- peggy.parse(source);
+export const peggyParse = (source: string): peggy.ContinuationExpression[] => {
+ return peggy.parse(source);
+};