Files
old-lab_ui/node_modules/bower/lib/util/isPathAbsolute.js

6 lines
111 B
JavaScript
Raw Normal View History

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