sensordb2 e64a8defe5 3.17 | 1 year ago | |
---|---|---|
.. | ||
index.js | 1 year ago | |
license | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
Check if a path is a file, directory, or symlink
$ npm install --save path-type
var pathType = require('path-type');
pathType.file('package.json').then(function (isFile) {
console.log(isFile);
//=> true
})
Returns a promise that resolves to a boolean of whether the path is the checked type.
Returns a boolean of whether the path is the checked type.
MIT © Sindre Sorhus