Blame view

node_modules/bower/lib/util/isPathAbsolute.js 111 Bytes
2dda2e10   Administrator   generator ignore
1
2
3
4
5
  function isPathAbsolute(filePath) {
      return filePath.charAt(0) === '/';
  }
  
  module.exports = isPathAbsolute;