mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-01-18 16:31:32 +00:00
9 lines
105 B
TypeScript
9 lines
105 B
TypeScript
export function implicitElse(condition: boolean) {
|
|
let a = 1
|
|
|
|
if (condition)
|
|
a = 2
|
|
|
|
return a
|
|
}
|