(buf, string, offset, length)
| 756 | return blitBuffer(asciiToBytes(string), buf, offset, length); |
| 757 | } |
| 758 | function base64Write(buf, string, offset, length) { |
| 759 | return blitBuffer(base64ToBytes(string), buf, offset, length); |
| 760 | } |
| 761 | function ucs2Write(buf, string, offset, length) { |
| 762 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); |
| 763 | } |
no test coverage detected
searching dependent graphs…