jccp_a/vuepress/node_modules/fs-extra/lib/path-exists/index.js
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

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