NeedEscape returns whether the given byte needs to be escaped.
(ch byte)
| 143 | |
| 144 | // NeedEscape returns whether the given byte needs to be escaped. |
| 145 | func NeedEscape(ch byte) bool { |
| 146 | return EncodeMap[ch] != DontEscape |
| 147 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…