(buf, string, offset, length)
| 753 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); |
| 754 | } |
| 755 | function asciiWrite(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 | } |
no test coverage detected
searching dependent graphs…