3 lines
76 B
TypeScript

export function uncovered(condition: boolean) {
return condition ? 1 : 0
}