audiobookshelf/server/libs/fsExtra/path-exists/index.js

13 lines
268 B
JavaScript
Raw Normal View History

2022-07-06 02:53:01 +02:00
'use strict'
const u = require('../../universalify').fromPromise
const fs = require('../fs')
function pathExists(path) {
return fs.access(path).then(() => true).catch(() => false)
}
module.exports = {
pathExists: u(pathExists),
pathExistsSync: fs.existsSync
}