ß wird nicht mehr zu SS

This commit is contained in:
silas 2018-11-13 10:27:36 +01:00
parent 0d569fea3b
commit e8c798477f
2 changed files with 2 additions and 2 deletions

View File

@ -6028,7 +6028,7 @@ class Level {
{
this.words = [];
for (let i = 0, n = words.length; i < n; i++) {
this.words.push(words[i].toUpperCase());
this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase());
}
}

View File

@ -82,7 +82,7 @@ export class Level {
{
this.words = [];
for (let i = 0, n = words.length; i < n; i++) {
this.words.push(words[i].toUpperCase());
this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase());
}
}