mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
// deno-coverage-ignore-file
|
|
|
|
export function unused(condition: boolean): boolean {
|
|
if (condition) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|