mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import fs from 'node:fs'
|
|
|
|
export const isExistingPath = async (path: string): Promise<boolean> => {
|
|
try {
|
|
await fs.promises.access(path, fs.constants.F_OK)
|
|
return true
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|