fix: missing key and value in localstorage

This commit is contained in:
moonD4rk
2023-03-12 18:20:15 +08:00
parent c070323e86
commit b824f74fae
2 changed files with 22 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
package byteutil
var (
OnSplitUTF8Func = func(r rune) rune {
if r == 0x00 || r == 0x01 {
return -1
}
return r
}
)