caoge c760052ff9 机车状态修改 | 8 months ago | |
---|---|---|
.. | ||
node_modules | 8 months ago | |
index.js | 8 months ago | |
license | 8 months ago | |
package.json | 8 months ago | |
readme.md | 8 months 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