-
자바스크립트 babel cdn. es6 -> es5로 변환카테고리 없음 2020. 6. 16. 12:26
이렇게 할 수 있다.
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.7.7/babel.min.js"></script> <script text="text/babel"> var input = 'const getMessage = () => "Hello World";'; var output = Babel.transform(input, { presets: ['es2015'] }).code; console.log(output); </script>