Always returns false. Useful as a ready-to-use callback.
false
t
const fileExists = await fs.promises.access(path).then(t, f); Copy
const fileExists = await fs.promises.access(path).then(t, f);
Always returns
false. Useful as a ready-to-use callback.See
t
Example