private removeKeyword()

in lib/common/utils/statementBuilder.util.ts [28:34]


  private removeKeyword(clause: string, keyword: string): string {
    const formattedKeyword: string = keyword.trim() + " ";

    return clause.toUpperCase().startsWith(formattedKeyword)
      ? clause.substring(formattedKeyword.length)
      : clause;
  }