|
|
2 년 전 | |
|---|---|---|
| .. | ||
| node_modules | 2 년 전 | |
| index.js | 2 년 전 | |
| license | 2 년 전 | |
| package.json | 2 년 전 | |
| readme.md | 2 년 전 | |
Check if a path is a file, directory, or symlink
$ npm install 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