pages/node_modules/fs-extra/lib/path-exists/index.js
git_repo_user 0a38b60f32 first commit
2025-08-29 21:42:23 +00:00

12 lines
263 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
}