This commit is contained in:
Pablo Martin 2025-06-04 17:06:54 +02:00
parent c44d00c625
commit a561131d0c
1260 changed files with 295975 additions and 0 deletions

View file

@ -0,0 +1,23 @@
'use strict';
const fs = require('fs');
const {promisify} = require('util');
const pAccess = promisify(fs.access);
module.exports = async path => {
try {
await pAccess(path);
return true;
} catch (_) {
return false;
}
};
module.exports.sync = path => {
try {
fs.accessSync(path);
return true;
} catch (_) {
return false;
}
};