wallet-core/node_modules/@soyuka/exists-sync/index.js
2017-08-14 05:02:09 +02:00

17 lines
239 B
JavaScript

'use strict'
const fs = require('fs')
/**
* fs.existsSync is deprecated
*/
module.exports = function existsSync(path) {
var exists = false
try {
fs.accessSync(path, fs.F_OK)
exists = true
} catch(e) {}
return exists
}