(buf, string, offset, length)
| 2666 | } |
| 2667 | |
| 2668 | function utf8Write (buf, string, offset, length) { |
| 2669 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 2670 | } |
| 2671 | |
| 2672 | function asciiWrite (buf, string, offset, length) { |
| 2673 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected