travis-ci-com
381 of 627 branches covered (60.77%)
Branch coverage included in aggregate %.
1467 of 1724 relevant lines covered (85.09%)
21.74 hits per line
1 |
import * as fs from 'fs'; |
4✔ |
2 |
|
8✔ |
3 |
export function unlinkSafe(path: string): boolean { |
12✔ |
4 |
try {
|
21✔ |
5 |
fs.unlinkSync(path); |
63✔ |
6 |
|
42✔ |
7 |
return true; |
63✔ |
8 |
} catch {
|
|
9 |
return false; |
|
10 |
} |
|
11 |
} |