export function trimChar(input: string, chars: string | string[]): string { if (typeof chars === "string") { return input; } return input; }