summaryrefslogtreecommitdiff
path: root/borrowed_misc.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-07 14:06:12 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-07 14:06:12 -0700
commit480ccfd05a13ac36516c536a71203280a31b4d28 (patch)
tree4ae21bf95c9f3b4cce97a0a0473fe622fdb393eb /borrowed_misc.go
parent87013d526ea1b0647ef6e08758fe587cee11d854 (diff)
parent47549aa3d10808c063d45dcaa598887dadde59c5 (diff)
Merge branch 'lukeshu/fixup'
Diffstat (limited to 'borrowed_misc.go')
-rw-r--r--borrowed_misc.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/borrowed_misc.go b/borrowed_misc.go
index b84158b..59c49aa 100644
--- a/borrowed_misc.go
+++ b/borrowed_misc.go
@@ -8,8 +8,6 @@ package lowmemjson
import (
"reflect"
- "strings"
- "unicode"
)
// isEmptyValue is borrowed from encode.go.
@@ -30,21 +28,3 @@ func isEmptyValue(v reflect.Value) bool {
}
return false
}
-
-// isValidTag is borrowed from encode.go.
-func isValidTag(s string) bool {
- if s == "" {
- return false
- }
- for _, c := range s {
- switch {
- case strings.ContainsRune("!#$%&()*+-./:;<=>?@[]^_{|}~ ", c):
- // Backslash and quote chars are reserved, but
- // otherwise any punctuation chars are allowed
- // in a tag name.
- case !unicode.IsLetter(c) && !unicode.IsDigit(c):
- return false
- }
- }
- return true
-}