%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/node_modules/path-exists/
Upload File :
Create Path :
Current File : /var/www/html/node_modules/path-exists/index.js

'use strict';
const fs = require('fs');

module.exports = fp => new Promise(resolve => {
	fs.access(fp, err => {
		resolve(!err);
	});
});

module.exports.sync = fp => {
	try {
		fs.accessSync(fp);
		return true;
	} catch (err) {
		return false;
	}
};

Zerion Mini Shell 1.0