audiobookshelf/server/libs/fsExtra/path-exists/index.js
2022-07-05 19:53:01 -05:00

13 lines
268 B
JavaScript

'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
}