bump dependencies

Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
Florian Wagner
2022-04-25 04:00:01 +00:00
committed by GitHub
parent e60fba28c0
commit 0101132218
895 changed files with 118817 additions and 55474 deletions
+18
View File
@@ -9,6 +9,7 @@
package diffmatchpatch
import (
"strconv"
"strings"
"unicode/utf8"
)
@@ -86,3 +87,20 @@ func runesIndex(r1, r2 []rune) int {
}
return -1
}
func intArrayToString(ns []uint32) string {
if len(ns) == 0 {
return ""
}
indexSeparator := IndexSeparator[0]
// Appr. 3 chars per num plus the comma.
b := []byte{}
for _, n := range ns {
b = strconv.AppendInt(b, int64(n), 10)
b = append(b, indexSeparator)
}
b = b[:len(b)-1]
return string(b)
}