(buf, string, offset, length)
| 3456 | } |
| 3457 | |
| 3458 | function base64Write (buf, string, offset, length) { |
| 3459 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 3460 | } |
| 3461 | |
| 3462 | function ucs2Write (buf, string, offset, length) { |
| 3463 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected
searching dependent graphs…