(buf, string, offset, length)
| 858 | } |
| 859 | |
| 860 | function base64Write (buf, string, offset, length) { |
| 861 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 862 | } |
| 863 | |
| 864 | function ucs2Write (buf, string, offset, length) { |
| 865 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected
searching dependent graphs…