is-regular-file
Checks if a given path is a regular file
Last updated 8 years ago by satazor .
MIT · Repository · Bugs · Original npm
$ cnpm install is-regular-file 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 1.1.1                                ...           latest (8 years ago)

1 Versions

  • 1.1.1                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (8)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org