(buf, string, offset, length)
| 1412 | } |
| 1413 | |
| 1414 | function latin1Write (buf, string, offset, length) { |
| 1415 | return asciiWrite(buf, string, offset, length) |
| 1416 | } |
| 1417 | |
| 1418 | function base64Write (buf, string, offset, length) { |
| 1419 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected