base64-arraybuffer.js 1.9 KB

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