Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function babylonParse(source: any, options?: any) {
var ast = reifyBabylonParse(source, options);
if (ast.type === "File") ast = ast.program;
return ast;
}