All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.path-exists.index.js Maven / Gradle / Ivy

The newest version!
'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;
	}
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy