WriteRaw to write raw byte array
(data []byte)
| 12 | |
| 13 | // WriteRaw to write raw byte array |
| 14 | func (w *VT100Writer) WriteRaw(data []byte) { |
| 15 | w.buffer = append(w.buffer, data...) |
| 16 | } |
| 17 | |
| 18 | // Write to write safety byte array by removing control sequences. |
| 19 | func (w *VT100Writer) Write(data []byte) { |
no outgoing calls
no test coverage detected