push
travis-ci-com
373 of 615 branches covered (60.65%)
Branch coverage included in aggregate %.
1467 of 1722 relevant lines covered (85.19%)
18.94 hits per line
1 |
import * as fs from 'fs'; |
|
2 |
|
4✔ |
3 |
export function unlinkSafe(path: string): boolean { |
4✔ |
4 |
try {
|
|
5 |
fs.unlinkSync(path); |
24✔ |
6 |
|
24✔ |
7 |
return true; |
24✔ |
8 |
} catch {
|
|
9 |
return false; |
|
10 |
} |
× |
11 |
} |