(buf, string, offset, length)
| 850 | } |
| 851 | |
| 852 | function utf8Write (buf, string, offset, length) { |
| 853 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 854 | } |
| 855 | |
| 856 | function asciiWrite (buf, string, offset, length) { |
| 857 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…