parse.ts - Add file which reexports acorn.parse

This commit is contained in:
2020-08-12 15:32:59 +05:30
parent 54ac7e7883
commit 70fa0da34e
+5
View File
@@ -0,0 +1,5 @@
import { parse } from 'acorn';
export function parseScript(content: string) {
return parse(content);
}