(buf, string, offset, length)
| 924 | } |
| 925 | |
| 926 | function base64Write (buf, string, offset, length) { |
| 927 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 928 | } |
| 929 | |
| 930 | function ucs2Write (buf, string, offset, length) { |
| 931 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected
searching dependent graphs…