(buf, string, offset, length)
| 912 | } |
| 913 | |
| 914 | function utf8Write (buf, string, offset, length) { |
| 915 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 916 | } |
| 917 | |
| 918 | function asciiWrite (buf, string, offset, length) { |
| 919 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected