NeedEscape returns whether the given byte needs to be escaped.
(ch byte)
| 127 | |
| 128 | // NeedEscape returns whether the given byte needs to be escaped. |
| 129 | func NeedEscape(ch byte) bool { |
| 130 | return EncodeMap[ch] != DontEscape |
| 131 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…