static removePreceedingSlash()

in src/utils.js [15:17]


  static removePreceedingSlash(str: string): string {
    return str.length && str[0] === '/' ? str.slice(1) : str;
  }