New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

exists-case

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exists-case

wrap fs.exists for case sensitivity

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
866
-18.84%
Maintainers
1
Weekly downloads
 
Created
Source

exists-case

Wrap fs.exists for case sensitivity

NPM version Build Status Build Status NPM downloads

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.

Keywords

exists

FAQs

Package last updated on 29 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts