Muqriz 48f16bfc3e initail first | 4 months ago | |
---|---|---|
.. | ||
index.js | 4 months ago | |
license | 4 months ago | |
package.json | 4 months ago | |
readme.md | 4 months ago |
Check if a path is a file, directory, or symlink
$ npm install --save path-type
const pathType = require('path-type');
pathType.file('package.json').then(isFile => {
console.log(isFile);
//=> true
})
Returns a Promise
for a boolean
of whether the path is the checked type.
Returns a boolean
of whether the path is the checked type.
MIT © Sindre Sorhus