Skip to main content

latest
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
70%
Published
4 months ago (0.1.1)
Package root>index.ts
/** * Say hi to someone * @param name - The name of the person to say hi to * @returns The greeting message */ export function sayHi(name: string): string { return `Hello ${name} !`; }