(buf, string, offset, length)
| 79188 | } |
| 79189 | |
| 79190 | function latin1Write (buf, string, offset, length) { |
| 79191 | return asciiWrite(buf, string, offset, length) |
| 79192 | } |
| 79193 | |
| 79194 | function base64Write (buf, string, offset, length) { |
| 79195 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected