travis-ci-com
282 of 448 branches covered (62.95%)
Branch coverage included in aggregate %.
258 of 258 new or added lines in 12 files covered. (100.0%)
1262 of 1449 relevant lines covered (87.09%)
28.63 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 |
} |