Repository URL to install this package:
|
Version:
1.0.2 ▾
|
import { lstatSync } from 'fs'
/**
* @see https://nodejs.org/docs/latest/api/fs.html#fs_class_fs_stats
*/
export function isFile(file: string) {
try {
const result = lstatSync(file).isFile()
return result
} catch (excption) {
return false
}
}