in src/utilities.ts [21:25]
export function isEqual(str1: string, str2: string) { if (!str1) str1 = '' if (!str2) str2 = '' return str1.toLowerCase() === str2.toLowerCase() }