UNPKG

miaow-babel-parse

Version:

Miaow的Babel编译工具,只是对Babel进行简单封装

18 lines (12 loc) 250 B
import path from 'path'; // jsx const helloInJsx = ({ name }) => <div>hello, {name}</div>; // ES2015 const hello = name => `hello, ${name}`; // ES2016 const cubed = 2 ** 3; // ES2017 async function foo() { await bar(); } export default hello;