(buf, string, offset, length)
| 908 | } |
| 909 | |
| 910 | function utf8Write(buf, string, offset, length) { |
| 911 | var charsWritten = blitBuffer( |
| 912 | utf8ToBytes(string, buf.length - offset), |
| 913 | buf, |
| 914 | offset, |
| 915 | length |
| 916 | ) |
| 917 | return charsWritten |
| 918 | } |
| 919 | |
| 920 | function asciiWrite(buf, string, offset, length) { |
| 921 | var charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…