Repository URL to install this package:
|
Version:
1.0.2 ▾
|
import { unlinkSync } from 'fs'
export function del(file: string) {
try {
unlinkSync(file)
} catch (exception) {
// ignore
return false
}
return true
}