exists-case
v0.1.0
Published
wrap fs.exists for case sensitivity
Downloads
4,973
Maintainers
Readme
exists-case
Wrap fs.exists for case sensitivity
Install
$ npm install exists-case -g
Usage
var exists = require('exists-case');
// try to test Package.json in cwd
exists('Package.json', function(result) {
result.should.be.false;
});
Same as sync way
var exists = require('exists-case');
// try to test Package.json in cwd
exists.sync('Package.json').should.be.false;
LISENCE
Copyright (c) 2015 popomore. Licensed under the MIT license.