ソースを参照

Allows nulls in equalsIgnoreCase

main
Eric Amodio 4年前
コミット
7c73a86d57
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      src/system/string.ts

+ 3
- 1
src/system/string.ts ファイルの表示

@ -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;
}

読み込み中…
キャンセル
保存