(buf, string, offset, length)
| 750 | return i; |
| 751 | } |
| 752 | function utf8Write(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 | } |
no test coverage detected
searching dependent graphs…