base64-arraybuffer.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.decode = exports.encode = void 0;
  4. // imported from https://github.com/socketio/base64-arraybuffer
  5. const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
  6. // Use a lookup table to find the index.
  7. const lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);
  8. for (let i = 0; i < chars.length; i++) {
  9. lookup[chars.charCodeAt(i)] = i;
  10. }
  11. const encode = (arraybuffer) => {
  12. let bytes = new Uint8Array(arraybuffer), i, len = bytes.length, base64 = '';
  13. for (i = 0; i < len; i += 3) {
  14. base64 += chars[bytes[i] >> 2];
  15. base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];
  16. base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];
  17. base64 += chars[bytes[i + 2] & 63];
  18. }
  19. if (len % 3 === 2) {
  20. base64 = base64.substring(0, base64.length - 1) + '=';
  21. }
  22. else if (len % 3 === 1) {
  23. base64 = base64.substring(0, base64.length - 2) + '==';
  24. }
  25. return base64;
  26. };
  27. exports.encode = encode;
  28. const decode = (base64) => {
  29. let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;
  30. if (base64[base64.length - 1] === '=') {
  31. bufferLength--;
  32. if (base64[base64.length - 2] === '=') {
  33. bufferLength--;
  34. }
  35. }
  36. const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);
  37. for (i = 0; i < len; i += 4) {
  38. encoded1 = lookup[base64.charCodeAt(i)];
  39. encoded2 = lookup[base64.charCodeAt(i + 1)];
  40. encoded3 = lookup[base64.charCodeAt(i + 2)];
  41. encoded4 = lookup[base64.charCodeAt(i + 3)];
  42. bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);
  43. bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);
  44. bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);
  45. }
  46. return arraybuffer;
  47. };
  48. exports.decode = decode;