mirror of
https://github.com/denoland/deno.git
synced 2025-01-09 15:48:16 -05: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;
|
|
}
|
|
}
|