(dst []byte, x uint16)
| 2016 | } |
| 2017 | |
| 2018 | func appendHex16(dst []byte, x uint16) []byte { |
| 2019 | return append(dst, |
| 2020 | hexchars[x>>12&0xF], hexchars[x>>8&0xF], |
| 2021 | hexchars[x>>4&0xF], hexchars[x>>0&0xF], |
| 2022 | ) |
| 2023 | } |
| 2024 | |
| 2025 | // DisableEscapeHTML will disable the automatic escaping of certain |
| 2026 | // "problamatic" HTML characters when encoding to JSON. |
no outgoing calls
no test coverage detected
searching dependent graphs…