(buf, string, offset, length)
| 113400 | return i; |
| 113401 | } |
| 113402 | function utf8Write(buf, string, offset, length) { |
| 113403 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); |
| 113404 | } |
| 113405 | function asciiWrite(buf, string, offset, length) { |
| 113406 | return blitBuffer(asciiToBytes(string), buf, offset, length); |
| 113407 | } |
no test coverage detected