Skip to content

Instantly share code, notes, and snippets.

@pnavarrc
Created July 11, 2019 15:27
export default plugin(babel) {
return {
name: "plugin-name",
ArrowFunctionExpression(path) {
const { node } = path;
// transform the node here
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment