(buf, string, offset, length)
| 10508 | } |
| 10509 | |
| 10510 | function latin1Write (buf, string, offset, length) { |
| 10511 | return asciiWrite(buf, string, offset, length) |
| 10512 | } |
| 10513 | |
| 10514 | function base64Write (buf, string, offset, length) { |
| 10515 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected