wallet-core/node_modules/@soyuka/exists-sync/index.js

17 lines
239 B
JavaScript
Raw Normal View History

2017-08-14 05:01:11 +02:00
'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
}