Przeglądaj źródła

Improve string sanitation for parsing

Ensure strings are properly sanitized before processing.
master
TheoryOfNekomata 1 rok temu
rodzic
commit
bb15edd726
1 zmienionych plików z 3 dodań i 0 usunięć
  1. +3
    -0
      packages/core/src/systems/en-US/parse.ts

+ 3
- 0
packages/core/src/systems/en-US/parse.ts Wyświetl plik

@@ -33,6 +33,9 @@ const FINAL_TOKEN = '' as const;

export const tokenize = (stringValue: string) => (
stringValue
.toLowerCase()
.trim()
.replace(/\s+/, ' ')
.replace(new RegExp(`${TENS_ONES_SEPARATOR}`, 'g'), ' ')
.split(' ')
.filter((maybeToken) => maybeToken.length > 0)


Ładowanie…
Anuluj
Zapisz