0.1.0 • Published 6 years ago

is-file-in-cwd v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

is-file-in-cwd

Check if a filename is in the current working directory.

Install

$ yarn add is-file-in-cwd # Or alternatively: `npm install --save is-file-in-cwd`

Usage

'use strict';

const isFileInCwd = require('is-file-in-cwd');

// Returns `true` if a file named `README.md` is located
// in the directory that `process.cwd()` is pointing to.
// Returns `false` otherwise.
isFileInCwd('README.md');

Testing

$ yarn test # Or alternatively: `npm test`

License

The MIT License (Expat). See the license file for details.