path-type
Advanced tools
Weekly downloads
Readme
Check if a path is a file, directory, or symlink
$ npm install path-type
import {isFile} from 'path-type';
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
.
Check if a path is a file, directory, or symlink
The npm package path-type receives a total of 41,258,967 weekly downloads. As such, path-type popularity was classified as popular.
We found that path-type demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.