d93b66ed4a2eca23046e6f2b08fcbe4cde40a2b841ab38db838ac75b0882947371024cb74ae43d2c9a2e095e2457e2207979c45f07d46e6e2b5f99efcfc794 263 B

123456789101112
  1. 'use strict'
  2. const u = require('universalify').fromPromise
  3. const fs = require('../fs')
  4. function pathExists (path) {
  5. return fs.access(path).then(() => true).catch(() => false)
  6. }
  7. module.exports = {
  8. pathExists: u(pathExists),
  9. pathExistsSync: fs.existsSync
  10. }