rabin ef108495d0 edit | 7 months ago | |
---|---|---|
.. | ||
index.d.ts | 7 months ago | |
index.js | 7 months ago | |
license | 7 months ago | |
package.json | 7 months ago | |
readme.md | 7 months ago |
Check if a path is a file, directory, or symlink
$ npm install path-type
const {isFile} = require('path-type');
(async () => {
console.log(await isFile('package.json'));
//=> true
})();
Check whether the passed path
is a file.
Returns a Promise<boolean>
.
Type: string
The path to check.
Check whether the passed path
is a directory.
Returns a Promise<boolean>
.
Check whether the passed path
is a symlink.
Returns a Promise<boolean>
.
Synchronously check whether the passed path
is a file.
Returns a boolean
.
Synchronously check whether the passed path
is a directory.
Returns a boolean
.
Synchronously check whether the passed path
is a symlink.
Returns a boolean
.
MIT © Sindre Sorhus