UNPKG

@yagisumi/hello

Version:
20 lines (18 loc) 305 B
/** * say hello * @param name name * @since 0.1.0 */ function hello(name) { if (name) { console.log(`Hello ${name}!`); } else { console.log("Hello!"); } } function _error() { throw new Error("error"); } export { hello, _error }; //# sourceMappingURL=hello.mjs.map