Created
August 14, 2019 11:41
-
-
Save imedadel/9da6defae860dab3d0b7c084532ad366 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const parser = require("@babel/parser") | |
const generator = require("@babel/generator") | |
const code = 'module.exports = { j: "h"}' | |
const ast = parser.parse(code) | |
generator.default(ast, {}).code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment