Source: index.js
/** * 返回 "Hi!" 字符串 * @returns string */ function sayHi() { return "Hi!"; } exports.sayHi = sayHi;
Home
Global
sayHi