1.1.1 • Published 6 years ago

is-regular-file v1.1.1

Weekly downloads
30,242
License
MIT
Repository
github
Last release
6 years ago

is-regular-file

NPM version Downloads Build Status Coverage Status Dependency status Dev Dependency status Greenkeeper badge

Checks if a path is a regular file.

Installation

$ npm install is-regular-file

Usage

const isRegularFile = require('is-regular-file');

isRegularFile('path/to/file')
.then((is) => console.log('Is regular file:', is));

or if you prefer sync:

const isRegularFileSync = require('is-regular-file').sync;

console.log('Is regular file:', isRegularFileSync('path/to/file'));

Tests

$ npm test
$ npm test-cov to get coverage report

License

Released under the MIT License.