travis-ci-com
285 of 452 branches covered (63.05%)
Branch coverage included in aggregate %.
249 of 249 new or added lines in 9 files covered. (100.0%)
1275 of 1453 relevant lines covered (87.75%)
39.07 hits per line
1 |
import * as fs from 'fs'; |
|
|
|
8✔ |
|
export function unlinkSafe(path: string): boolean { |
8✔ |
4 |
try {
|
|
|
fs.unlinkSync(path); |
42✔ |
|
|
42✔ |
|
return true; |
42✔ |
8 |
} catch {
|
|
9 |
return false; |
|
|
} |
× |
11 |
} |