mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +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;
|
|
}
|
|
}
|