summaryrefslogtreecommitdiff
path: root/src/parser/index.ts
blob: 912e6f2ddc714da449d0025516a957afc7e62fab (plain)
1
2
3
4
5
6
7
export * from './generate';
export * from './parser';
import * as peggy from './parser';

export const peggyParse = (source: string): peggy.ContinuationExpression[] => {
  return peggy.parse(source);
};