(src, dst, offset, length)
| 1504 | return base64.toByteArray(base64clean(str)); |
| 1505 | } |
| 1506 | function blitBuffer(src, dst, offset, length) { |
| 1507 | for (var i = 0; i < length; ++i) { |
| 1508 | if (i + offset >= dst.length || i >= src.length) break; |
| 1509 | dst[i + offset] = src[i]; |
| 1510 | } |
| 1511 | return i; |
| 1512 | } |
| 1513 | |
| 1514 | // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass |
| 1515 | // the `instanceof` check but they should be treated as of that type. |
no outgoing calls
no test coverage detected
searching dependent graphs…