summaryrefslogtreecommitdiff
path: root/src/utils.ts
blob: 444e9a0c3a54a74686de25657fe33e0541bb8738 (plain)
1
2
3
4
5
6
7
export function trimChar(input: string, chars: string | string[]): string {
  if (typeof chars === "string") {
    return input;
  }

  return input;
}