JS: use slice() instead of splice()

slice() does the same as splice() without the unintended effect of
transforming the array.
This commit is contained in:
miruka
2019-10-24 08:09:33 -04:00
parent 5522de5165
commit 756edc90dd
3 changed files with 3 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ Rectangle {
readonly property int deleteCharsOnBackspace:
lineTextUntilCursor.match(/^ +$/) ?
lineTextUntilCursor.match(/ {1,4}/g).splice(-1)[0].length :
lineTextUntilCursor.match(/ {1,4}/g).slice(-1)[0].length :
1
// property var pr: lineTextUntilCursor

View File

@@ -289,6 +289,6 @@ function copyToClipboard(text) {
function urlExtension(url) {
return url.toString().split("/").splice(-1)[0].split("?")[0].split(".")
.splice(-1)[0].toLowerCase()
return url.toString().split("/").slice(-1)[0].split("?")[0].split(".")
.slice(-1)[0].toLowerCase()
}