diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-08 15:13:22 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-08 16:01:29 -0500 | 
| commit | bb334acab65ae194d749ac2da5bd1ba6b02413ec (patch) | |
| tree | d99415d12c50d28c2f06bb9eeae72bfdca42bbcc /ext/bg/js/search-query-parser.js | |
| parent | 8ca44d722c6db79f6f3a1892558c7c24f98abd5e (diff) | |
Use substring instead of slice
Diffstat (limited to 'ext/bg/js/search-query-parser.js')
| -rw-r--r-- | ext/bg/js/search-query-parser.js | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/bg/js/search-query-parser.js b/ext/bg/js/search-query-parser.js index 1c583bf1..1632b561 100644 --- a/ext/bg/js/search-query-parser.js +++ b/ext/bg/js/search-query-parser.js @@ -148,10 +148,9 @@ class QueryParser {      async setPreview(text) {          const previewTerms = []; -        while (text.length > 0) { -            const tempText = text.slice(0, 2); -            previewTerms.push([{text: Array.from(tempText)}]); -            text = text.slice(2); +        for (let i = 0, ii = text.length; i < ii; i += 2) { +            const tempText = text.substring(i, i + 2); +            previewTerms.push([{text: tempText.split('')}]);          }          this.queryParser.innerHTML = await apiTemplateRender('query-parser.html', {              terms: previewTerms,  |