(str string)
| 2174 | } |
| 2175 | |
| 2176 | func (w *natsWriter) appendString(str string) error { |
| 2177 | return w.appendBufs([]byte(str)) |
| 2178 | } |
| 2179 | |
| 2180 | func (w *natsWriter) appendBufs(bufs ...[]byte) error { |
| 2181 | for _, buf := range bufs { |
no test coverage detected