Skip to main content

latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
76%
Published
8 months ago (0.0.1)
// mod.ts /** * A module providing a function to say hello. * @module */ /** * Return a hello message * * @param msg The hello message which will appear * @returns formatted hello message */ export function helloJsr(msg: string): string { return `Hello, ${msg} from sy!`; }