|
hai 1 semana | |
---|---|---|
.. | ||
node_modules | hai 1 semana | |
index.js | hai 1 semana | |
license | hai 1 semana | |
package.json | hai 1 semana | |
readme.md | hai 1 semana |
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