(data, binaryType)
| 319 | }; |
| 320 | }; |
| 321 | var decodeBase64Packet = function decodeBase64Packet(data, binaryType) { |
| 322 | if (withNativeArrayBuffer$1) { |
| 323 | var decoded = decode$1(data); |
| 324 | return mapBinary(decoded, binaryType); |
| 325 | } else { |
| 326 | return { |
| 327 | base64: true, |
| 328 | data: data |
| 329 | }; // fallback for old browsers |
| 330 | } |
| 331 | }; |
| 332 | var mapBinary = function mapBinary(data, binaryType) { |
| 333 | switch (binaryType) { |
| 334 | case "blob": |
no test coverage detected