José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | 4 years ago | |
---|---|---|
.. | ||
index.js | 4 years ago | |
license | 4 years ago | |
package.json | 4 years ago | |
readme.md | 4 years ago |
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