is-existing-file
!NPM versionnpm-imagenpm-urlCheck if a certain path exists and is a file (i.e. not a folder)
Installation
Installis-existing-file
using npm:npm install --save is-existing-file
Usage
Module usage
var isExistingFile = require('is-existing-file');
isExistingFile('/a/file/path', function (result) {
// ...
});
API
isExistingFile(filepath, cb)
| Name | Type | Description |
|------|------|-------------|
| filepath | String
| File path to check |
| cb | Function
| Callback function |