mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
18 lines
306 B
TypeScript
18 lines
306 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @strict: true
|
|
// @Filename: a.js
|
|
|
|
// from bcryptjs
|
|
/** @param {function(...[*])} callback */
|
|
function g(callback) {
|
|
callback([1], [2], [3])
|
|
}
|
|
|
|
/**
|
|
* @type {!function(...number):string}
|
|
* @inner
|
|
*/
|
|
var stringFromCharCode = String.fromCharCode;
|