// Checks if string ends with the given suffix
export function endsWith(str: string, ending: string): boolean {
  return str.endsWith(ending);
}
