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:
@@ -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
|
||||
|
@@ -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()
|
||||
}
|
||||
|
Reference in New Issue
Block a user