Skip to content

Instantly share code, notes, and snippets.

@daybrush
Last active October 7, 2018 09:12
Show Gist options
  • Save daybrush/353d3b3cd394a894720c0efe0ebad08a to your computer and use it in GitHub Desktop.
Save daybrush/353d3b3cd394a894720c0efe0ebad08a to your computer and use it in GitHub Desktop.
babel/parser
import {parse} from "@babel/parser";
const code = `function a(b) {
const c = 1;
}`;
const ast = parse(code, {
sourceType: "module"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment