NotificationLatch/lib/fshelpers.js

20 lines
192 B
JavaScript

const fs = require('fs').promises;
async function exists(path)
{
try
{
await fs.access(path);
return true;
}
catch
{
return false;
}
}
module.exports =
{
exists
}