mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
879a0f39a8
swc: - `minify`: Support `format.comments`. - `process_js`: Support `jsc.minify.format.comments`.
20 lines
294 B
JavaScript
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
|
|
);
|
|
} |