swc/tests/fixture/minify/comments/true-01/input/index.js
강동윤 879a0f39a8
feat(swc): Implement format.comments of terser (#2095)
swc:
 - `minify`: Support `format.comments`.
 - `process_js`: Support `jsc.minify.format.comments`.
2021-08-17 14:34:37 +00:00

20 lines
294 B
JavaScript

/**
* Utility functions for the foo package.
* @module foo/util
* @license Apache-2.0
*/
export const foo = function () {
/** 1 */
console.log(
/* 2 */
'Init foo'
/* 3 */
);
// 4
console.log(
// 5
'Init foo'
// 6
);
}