Skip to main content
Home

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
58%
Published
2 years ago (0.1.0)
Package root>src>index.ts
/** * 將兩個數字相加。 * @param a 第一個數字。 * @param b 第二個數字。 * @returns 兩個數字的和。 */ export function add(a: number, b: number): number { return a + b; }