| 
				
					 | 
			hai 1 ano | |
|---|---|---|
| .. | ||
| node_modules | hai 1 ano | |
| index.js | hai 1 ano | |
| license | hai 1 ano | |
| package.json | hai 1 ano | |
| readme.md | hai 1 ano | |
Check if a path is a file, directory, or symlink
$ npm install --save path-type
var pathType = require('path-type');
pathType.file('package.json').then(function (isFile) {
	console.log(isFile);
	//=> true
})
Returns a promise that resolves to a boolean of whether the path is the checked type.
Returns a boolean of whether the path is the checked type.
MIT © Sindre Sorhus