diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-24 11:02:52 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-24 11:02:52 -0500 |
commit | cf18e3b42e0fa171b9ec9af4c534a962d347e155 (patch) | |
tree | c0411fabbaf9a4f7a2d14b3de926d81d08be2553 /ext/bg/js/search.js | |
parent | eef05f6a64678ed30ac26720adfc44760a79e380 (diff) |
Replace string.substr and string.slice with string.substring
Improves semantic clarity, and it's recommended to not use substr.
Diffstat (limited to 'ext/bg/js/search.js')
-rw-r--r-- | ext/bg/js/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 56316217..ec5a5972 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -207,7 +207,7 @@ class DisplaySearch extends Display { const match = /[\*\uff0a]+$/.exec(query); if (match !== null) { details.wildcard = true; - query = query.substr(0, query.length - match[0].length); + query = query.substring(0, query.length - match[0].length); } const valid = (query.length > 0); |