cron
travis-ci-com
378 of 623 branches covered (60.67%)
Branch coverage included in aggregate %.
1490 of 1747 relevant lines covered (85.29%)
23.41 hits per line
1 |
import * as fs from 'fs'; |
|
2 |
|
8✔ |
3 |
export function unlinkSafe(path: string): boolean { |
8✔ |
4 |
try {
|
|
5 |
fs.unlinkSync(path); |
42✔ |
6 |
|
42✔ |
7 |
return true; |
42✔ |
8 |
} catch {
|
|
9 |
return false; |
|
10 |
} |
× |
11 |
} |