// Checks if string starts with the given prefix
export function startsWith(str: string, start: string): boolean {
  return str.startsWith(start);
}
