Sfoglia il codice sorgente

Allows nulls in equalsIgnoreCase

main
Eric Amodio 4 anni fa
parent
commit
7c73a86d57
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. +3
    -1
      src/system/string.ts

+ 3
- 1
src/system/string.ts Vedi File

@ -114,7 +114,9 @@ export function escapeMarkdown(s: string, options: { quoted?: boolean } = {}): s
return s.replace(markdownQuotedRegex, '\t\n> ');
}
export function equalsIgnoreCase(a: string, b: string): boolean {
export function equalsIgnoreCase(a: string | null | undefined, b: string | null | undefined): boolean {
if (a == null && b == null) return true;
if (a == null || b == null) return false;
return a.localeCompare(b, undefined, { sensitivity: 'accent' }) === 0;
}

Caricamento…
Annulla
Salva