(buf, string, offset, length)
| 3452 | } |
| 3453 | |
| 3454 | function latin1Write (buf, string, offset, length) { |
| 3455 | return asciiWrite(buf, string, offset, length) |
| 3456 | } |
| 3457 | |
| 3458 | function base64Write (buf, string, offset, length) { |
| 3459 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…