|
%!s(int64=7) %!d(string=hai) anos | |
---|---|---|
.. | ||
index.js | %!s(int64=7) %!d(string=hai) anos | |
license | %!s(int64=7) %!d(string=hai) anos | |
package.json | %!s(int64=7) %!d(string=hai) anos | |
readme.md | %!s(int64=7) %!d(string=hai) anos |
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