(s string)
| 684 | } |
| 685 | |
| 686 | func isQuoted(s string) bool { |
| 687 | if s == "" { |
| 688 | return false |
| 689 | } |
| 690 | return s[0] == '"' && s[len(s)-1] == '"' |
| 691 | } |
| 692 | |
| 693 | // isJSONIdx reports whether the string represents a JSON index. |
| 694 | func isJSONIdx(s string) (string, bool) { |
no outgoing calls
no test coverage detected
searching dependent graphs…