Files

6 lines
111 B
JavaScript
Raw Permalink Normal View History

2019-06-04 13:11:32 -04:00
function isPathAbsolute(filePath) {
return filePath.charAt(0) === '/';
}
module.exports = isPathAbsolute;