Files
babel/packages/babel-core/test/fixtures/babel-compile-async.mjs
2021-02-21 17:08:30 +01:00

12 lines
210 B
JavaScript
Executable File

#!/usr/bin/env node
// Usage:
// babel-compile-async.js [filename]
import babel from "../../lib/index.js";
(async () => {
process.stdout.write(
JSON.stringify(await babel.transformAsync(""))
);
})();