swc/tests/fixture/minify/comments/true-01/input/index.js

20 lines
294 B
JavaScript
Raw Normal View History

/**
* 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
);
}