1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-09 15:48:16 -05:00
denoland-deno/tests/testdata/coverage/ignore_file_directive_unused.ts
2024-11-05 12:43:16 +00:00

9 lines
155 B
TypeScript

// deno-coverage-ignore-file
export function unused(condition: boolean): boolean {
if (condition) {
return false;
} else {
return true;
}
}