Last active
July 11, 2019 15:21
-
-
Save pnavarrc/819d8e25fe018dac32577fe0e73ea966 to your computer and use it in GitHub Desktop.
writing-a-babel-plugin-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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