This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/node_modules/path-type
Rudis Muiznieks 1d7cc7ec9b switched from tslint to eslint 2021-09-04 22:21:14 -05:00
..
index.d.ts switched from tslint to eslint 2021-09-04 22:21:14 -05:00
index.js switched from tslint to eslint 2021-09-04 22:21:14 -05:00
license switched from tslint to eslint 2021-09-04 22:21:14 -05:00
package.json switched from tslint to eslint 2021-09-04 22:21:14 -05:00
readme.md switched from tslint to eslint 2021-09-04 22:21:14 -05:00

readme.md

path-type Build Status

Check if a path is a file, directory, or symlink

Install

$ npm install path-type

Usage

const {isFile} = require('path-type');

(async () => {
	console.log(await isFile('package.json'));
	//=> true
})();

API

isFile(path)

Check whether the passed path is a file.

Returns a Promise<boolean>.

path

Type: string

The path to check.

isDirectory(path)

Check whether the passed path is a directory.

Returns a Promise<boolean>.

Check whether the passed path is a symlink.

Returns a Promise<boolean>.

isFileSync(path)

Synchronously check whether the passed path is a file.

Returns a boolean.

isDirectorySync(path)

Synchronously check whether the passed path is a directory.

Returns a boolean.

isSymlinkSync(path)

Synchronously check whether the passed path is a symlink.

Returns a boolean.

License

MIT © Sindre Sorhus