push
travis-ci-com
387 of 631 branches covered (61.33%)
Branch coverage included in aggregate %.
1313 of 1546 relevant lines covered (84.93%)
60.53 hits per line
1 |
import * as fs from 'fs'; |
12✔ |
2 |
|
|
3 |
export function unlinkSafe(path: string): boolean { |
12✔ |
4 |
try {
|
63✔ |
5 |
fs.unlinkSync(path); |
63✔ |
6 |
|
|
7 |
return true; |
63✔ |
8 |
} catch {
|
|
9 |
return false; |
× |
10 |
} |
|
11 |
} |