mirror of
https://github.com/bower/bower.git
synced 2026-01-13 16:28:05 -05:00
6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
function isPathAbsolute(filePath) {
|
|
return filePath.charAt(0) === '/';
|
|
}
|
|
|
|
module.exports = isPathAbsolute;
|