(buf, string, offset, length)
| 113406 | return blitBuffer(asciiToBytes(string), buf, offset, length); |
| 113407 | } |
| 113408 | function base64Write(buf, string, offset, length) { |
| 113409 | return blitBuffer(base64ToBytes(string), buf, offset, length); |
| 113410 | } |
| 113411 | function ucs2Write(buf, string, offset, length) { |
| 113412 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); |
| 113413 | } |
no test coverage detected