@kcws/color
Version:
16 lines • 305 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.hello = void 0;
/**
* say hello
*
* @param name - input name
* @returns hello message
*
* @alpha
*/
const hello = (name) => {
return `hello ${name}`;
};
exports.hello = hello;
//# sourceMappingURL=index.js.map