var babel = require("@babel/core");
var sourceCode = `
var name = 'ysh';
/* comment1 */
/**
* comment2
*/
// comment 3
var dept = 'dev';
`;
// 주석 제거
var parsedAst = babel.parseSync(sourceCode, {
parserOpts: { attachComment: false },
});
sourceCode = babel.transformFromAstSync(parsedAst, sourceCode, {
}).code;
console.log(sourceCode);
// 결과
// var name = 'ysh';
// var dept = 'dev';
'web > babel' 카테고리의 다른 글
babel, change ternary to If-else statements (0) | 2022.11.29 |
---|---|
babel, add curly braces in arrow function (0) | 2022.11.29 |
babel, add curly braces one-line if-statements (0) | 2022.11.29 |