(buf, string, offset, length)
| 854 | } |
| 855 | |
| 856 | function asciiWrite (buf, string, offset, length) { |
| 857 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
| 858 | } |
| 859 | |
| 860 | function base64Write (buf, string, offset, length) { |
| 861 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…