export function cleanKeyWithSpecials(s: string, opts: Omit<CleanKeyOptions, "mode"> = {}): string {
  return run(s, { ...opts, mode: CharAllowanceMode.Specials });
}