Skip to content

Instantly share code, notes, and snippets.

@pnavarrc
Created July 11, 2019 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pnavarrc/1321c20234fb117828c28740cb461cab to your computer and use it in GitHub Desktop.
Save pnavarrc/1321c20234fb117828c28740cb461cab to your computer and use it in GitHub Desktop.
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