0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-25 06:32:41 -05:00
denoland-deno/tests/testdata/jsr/registry/@std/assert/0.220.1/assert.ts
Asher Gomez 0cc0cd0bbc
chore: update references to deno_std to use JSR (#23239)
There are more uses of `deno.land/std` in the codebase, but for URL
parsing purposes rather than network calls or documentation.
2024-04-11 10:31:52 +05:30

4 lines
82 B
TypeScript

// deno-lint-ignore-file
export function assert(expr: unknown) {
return true;
}