etherpad-lite/src/node/utils/path_exists.js

16 lines
268 B
JavaScript
Raw Normal View History

2020-11-23 13:24:19 -05:00
const fs = require('fs');
2016-06-20 00:22:29 +02:00
2020-11-23 13:24:19 -05:00
const check = function (path) {
const existsSync = fs.statSync || fs.existsSync || path.existsSync;
2016-06-20 00:22:29 +02:00
2020-11-23 13:24:19 -05:00
let result;
2016-06-20 00:22:29 +02:00
try {
result = existsSync(path);
} catch (e) {
result = false;
}
return result;
2020-11-23 13:24:19 -05:00
};
2016-06-20 00:22:29 +02:00
module.exports = check;