Skip to content

Instantly share code, notes, and snippets.

@pnavarrc
Last active July 11, 2019 15:21
writing-a-babel-plugin-1
// In
[1, 2, 3].map(n => n * n);
// Out
[1, 2, 3].map(function(n) { return n * n; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment