(buf, string, offset, length)
| 920 | } |
| 921 | |
| 922 | function latin1Write (buf, string, offset, length) { |
| 923 | return asciiWrite(buf, string, offset, length) |
| 924 | } |
| 925 | |
| 926 | function base64Write (buf, string, offset, length) { |
| 927 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…