travis-ci-com
362 of 592 branches covered (61.15%)
Branch coverage included in aggregate %.
1350 of 1579 relevant lines covered (85.5%)
39.22 hits per line
1 |
import * as fs from 'fs'; |
8✔ |
2 |
|
|
3 |
export function unlinkSafe(path: string): boolean { |
8✔ |
4 |
try {
|
42✔ |
5 |
fs.unlinkSync(path); |
42✔ |
6 |
|
|
7 |
return true; |
42✔ |
8 |
} catch {
|
|
9 |
return false; |
× |
10 |
} |
|
11 |
} |