(buf, string, offset, length)
| 10512 | } |
| 10513 | |
| 10514 | function base64Write (buf, string, offset, length) { |
| 10515 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 10516 | } |
| 10517 | |
| 10518 | function ucs2Write (buf, string, offset, length) { |
| 10519 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected