import { readFileSync, writeFileSync } from "node:fs"; import { bench, run } from "mitata"; var short = "Hello World!"; var shortUTF16 = "Hello World πŸ’•πŸ’•πŸ’•"; var long = "Hello World!".repeat(1024); var longUTF16 = "Hello World πŸ’•πŸ’•πŸ’•".repeat(1024); bench(`${short.length} ascii`, () => { writeFileSync("/tmp/bun.bench-out.txt", short); }); bench(`${short.length} utf8`, () => { writeFileSync("/tmp/bun.bench-out.txt", shortUTF16); }); bench(`${long.length} ascii`, () => { writeFileSync("/tmp/bun.bench-out.txt", long); }); bench(`${longUTF16.length} utf8`, () => { writeFileSync("/tmp/bun.bench-out.txt", longUTF16); }); await run(); '>dvikan-patch-1 Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/lib/url.php (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2025-02-24Fix data-lot-id not being correctly set so use href instead (#4453)Gravatar AndrΓ© Andersson 1-1/+1
2025-02-14fix(github): semi-repair (#4449)Gravatar Dag 1-12/+15
2025-02-14fix(vk): semi-disable broken bridge (#4448)Gravatar Dag 1-8/+15
2025-02-08fix nn.de description and paywall filter (#4444)Gravatar Christian Schabesberger 1-2/+2
2025-02-05fix CarThrottleBridge (#4442)Gravatar Tostiman 1-3/+3