25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
263 B

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