appendStringRaw appends a string value to the buffer without escaping.
(data string)
| 68 | |
| 69 | // appendStringRaw appends a string value to the buffer without escaping. |
| 70 | func (b *buffer) appendStringRaw(data string) { |
| 71 | *b = append(*b, data...) |
| 72 | } |
| 73 | |
| 74 | // appendStringQuoted appends a string value to the buffer, escaping and quoting it as necessary. |
| 75 | func (b *buffer) appendStringQuoted(data string) { |
no outgoing calls
no test coverage detected