mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
6c1f653b4f
- Update local storage query constant and function calls - Remove null and control characters from UTF-8 split function
9 lines
116 B
Go
9 lines
116 B
Go
package byteutil
|
|
|
|
var OnSplitUTF8Func = func(r rune) rune {
|
|
if r == 0x00 || r == 0x01 {
|
|
return -1
|
|
}
|
|
return r
|
|
}
|