travis-ci-com
374 of 617 branches covered (60.62%)
Branch coverage included in aggregate %.
325 of 325 new or added lines in 9 files covered. (100.0%)
1470 of 1729 relevant lines covered (85.02%)
38.24 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 |
} |