(buf, string, offset, length)
| 1108 | } |
| 1109 | |
| 1110 | function latin1Write (buf, string, offset, length) { |
| 1111 | return asciiWrite(buf, string, offset, length) |
| 1112 | } |
| 1113 | |
| 1114 | function base64Write (buf, string, offset, length) { |
| 1115 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected