(buf, start, end)
| 3542 | } |
| 3543 | |
| 3544 | function base64Slice (buf, start, end) { |
| 3545 | if (start === 0 && end === buf.length) { |
| 3546 | return base64.fromByteArray(buf) |
| 3547 | } else { |
| 3548 | return base64.fromByteArray(buf.slice(start, end)) |
| 3549 | } |
| 3550 | } |
| 3551 | |
| 3552 | function utf8Slice (buf, start, end) { |
| 3553 | end = Math.min(buf.length, end) |
no outgoing calls
no test coverage detected
searching dependent graphs…