0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/coverage/branch_expected.out
2022-07-12 18:58:39 -04:00

12 lines
295 B
Text

cover [WILDCARD]/coverage/branch.ts ... 28.571% (4/14)
4 | } else {
5 | return false;
6 | }
-----|-----
9 | export function unused(condition: boolean): boolean {
10 | if (condition) {
11 | return false;
12 | } else {
13 | return true;
14 | }
15 | }