base64.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. //
  2. // THIS FILE IS AUTOMATICALLY GENERATED! DO NOT EDIT BY HAND!
  3. //
  4. ;
  5. (function (global, factory) {
  6. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : // cf. https://github.com/dankogai/js-base64/issues/119
  7. function () {
  8. // existing version for noConflict()
  9. var _Base64 = global.Base64;
  10. var gBase64 = factory();
  11. gBase64.noConflict = function () {
  12. global.Base64 = _Base64;
  13. return gBase64;
  14. };
  15. if (global.Meteor) {
  16. // Meteor.js
  17. Base64 = gBase64;
  18. }
  19. global.Base64 = gBase64;
  20. }();
  21. })(typeof self !== 'undefined' ? self : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : this, function () {
  22. 'use strict';
  23. /**
  24. * base64.ts
  25. *
  26. * Licensed under the BSD 3-Clause License.
  27. * http://opensource.org/licenses/BSD-3-Clause
  28. *
  29. * References:
  30. * http://en.wikipedia.org/wiki/Base64
  31. *
  32. * @author Dan Kogai (https://github.com/dankogai)
  33. */
  34. var version = '3.7.2';
  35. /**
  36. * @deprecated use lowercase `version`.
  37. */
  38. var VERSION = version;
  39. var _hasatob = typeof atob === 'function';
  40. var _hasbtoa = typeof btoa === 'function';
  41. var _hasBuffer = typeof Buffer === 'function';
  42. var _TD = typeof TextDecoder === 'function' ? new TextDecoder() : undefined;
  43. var _TE = typeof TextEncoder === 'function' ? new TextEncoder() : undefined;
  44. var b64ch = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
  45. var b64chs = Array.prototype.slice.call(b64ch);
  46. var b64tab = function (a) {
  47. var tab = {};
  48. a.forEach(function (c, i) {
  49. return tab[c] = i;
  50. });
  51. return tab;
  52. }(b64chs);
  53. var b64re = /^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/;
  54. var _fromCC = String.fromCharCode.bind(String);
  55. var _U8Afrom = typeof Uint8Array.from === 'function' ? Uint8Array.from.bind(Uint8Array) : function (it, fn) {
  56. if (fn === void 0) {
  57. fn = function (x) {
  58. return x;
  59. };
  60. }
  61. return new Uint8Array(Array.prototype.slice.call(it, 0).map(fn));
  62. };
  63. var _mkUriSafe = function (src) {
  64. return src.replace(/=/g, '').replace(/[+\/]/g, function (m0) {
  65. return m0 == '+' ? '-' : '_';
  66. });
  67. };
  68. var _tidyB64 = function (s) {
  69. return s.replace(/[^A-Za-z0-9\+\/]/g, '');
  70. };
  71. /**
  72. * polyfill version of `btoa`
  73. */
  74. var btoaPolyfill = function (bin) {
  75. // console.log('polyfilled');
  76. var u32,
  77. c0,
  78. c1,
  79. c2,
  80. asc = '';
  81. var pad = bin.length % 3;
  82. for (var i = 0; i < bin.length;) {
  83. if ((c0 = bin.charCodeAt(i++)) > 255 || (c1 = bin.charCodeAt(i++)) > 255 || (c2 = bin.charCodeAt(i++)) > 255) throw new TypeError('invalid character found');
  84. u32 = c0 << 16 | c1 << 8 | c2;
  85. asc += b64chs[u32 >> 18 & 63] + b64chs[u32 >> 12 & 63] + b64chs[u32 >> 6 & 63] + b64chs[u32 & 63];
  86. }
  87. return pad ? asc.slice(0, pad - 3) + "===".substring(pad) : asc;
  88. };
  89. /**
  90. * does what `window.btoa` of web browsers do.
  91. * @param {String} bin binary string
  92. * @returns {string} Base64-encoded string
  93. */
  94. var _btoa = _hasbtoa ? function (bin) {
  95. return btoa(bin);
  96. } : _hasBuffer ? function (bin) {
  97. return Buffer.from(bin, 'binary').toString('base64');
  98. } : btoaPolyfill;
  99. var _fromUint8Array = _hasBuffer ? function (u8a) {
  100. return Buffer.from(u8a).toString('base64');
  101. } : function (u8a) {
  102. // cf. https://stackoverflow.com/questions/12710001/how-to-convert-uint8-array-to-base64-encoded-string/12713326#12713326
  103. var maxargs = 0x1000;
  104. var strs = [];
  105. for (var i = 0, l = u8a.length; i < l; i += maxargs) {
  106. strs.push(_fromCC.apply(null, u8a.subarray(i, i + maxargs)));
  107. }
  108. return _btoa(strs.join(''));
  109. };
  110. /**
  111. * converts a Uint8Array to a Base64 string.
  112. * @param {boolean} [urlsafe] URL-and-filename-safe a la RFC4648 §5
  113. * @returns {string} Base64 string
  114. */
  115. var fromUint8Array = function (u8a, urlsafe) {
  116. if (urlsafe === void 0) {
  117. urlsafe = false;
  118. }
  119. return urlsafe ? _mkUriSafe(_fromUint8Array(u8a)) : _fromUint8Array(u8a);
  120. }; // This trick is found broken https://github.com/dankogai/js-base64/issues/130
  121. // const utob = (src: string) => unescape(encodeURIComponent(src));
  122. // reverting good old fationed regexp
  123. var cb_utob = function (c) {
  124. if (c.length < 2) {
  125. var cc = c.charCodeAt(0);
  126. return cc < 0x80 ? c : cc < 0x800 ? _fromCC(0xc0 | cc >>> 6) + _fromCC(0x80 | cc & 0x3f) : _fromCC(0xe0 | cc >>> 12 & 0x0f) + _fromCC(0x80 | cc >>> 6 & 0x3f) + _fromCC(0x80 | cc & 0x3f);
  127. } else {
  128. var cc = 0x10000 + (c.charCodeAt(0) - 0xD800) * 0x400 + (c.charCodeAt(1) - 0xDC00);
  129. return _fromCC(0xf0 | cc >>> 18 & 0x07) + _fromCC(0x80 | cc >>> 12 & 0x3f) + _fromCC(0x80 | cc >>> 6 & 0x3f) + _fromCC(0x80 | cc & 0x3f);
  130. }
  131. };
  132. var re_utob = /[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g;
  133. /**
  134. * @deprecated should have been internal use only.
  135. * @param {string} src UTF-8 string
  136. * @returns {string} UTF-16 string
  137. */
  138. var utob = function (u) {
  139. return u.replace(re_utob, cb_utob);
  140. }; //
  141. var _encode = _hasBuffer ? function (s) {
  142. return Buffer.from(s, 'utf8').toString('base64');
  143. } : _TE ? function (s) {
  144. return _fromUint8Array(_TE.encode(s));
  145. } : function (s) {
  146. return _btoa(utob(s));
  147. };
  148. /**
  149. * converts a UTF-8-encoded string to a Base64 string.
  150. * @param {boolean} [urlsafe] if `true` make the result URL-safe
  151. * @returns {string} Base64 string
  152. */
  153. var encode = function (src, urlsafe) {
  154. if (urlsafe === void 0) {
  155. urlsafe = false;
  156. }
  157. return urlsafe ? _mkUriSafe(_encode(src)) : _encode(src);
  158. };
  159. /**
  160. * converts a UTF-8-encoded string to URL-safe Base64 RFC4648 §5.
  161. * @returns {string} Base64 string
  162. */
  163. var encodeURI = function (src) {
  164. return encode(src, true);
  165. }; // This trick is found broken https://github.com/dankogai/js-base64/issues/130
  166. // const btou = (src: string) => decodeURIComponent(escape(src));
  167. // reverting good old fationed regexp
  168. var re_btou = /[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g;
  169. var cb_btou = function (cccc) {
  170. switch (cccc.length) {
  171. case 4:
  172. var cp = (0x07 & cccc.charCodeAt(0)) << 18 | (0x3f & cccc.charCodeAt(1)) << 12 | (0x3f & cccc.charCodeAt(2)) << 6 | 0x3f & cccc.charCodeAt(3),
  173. offset = cp - 0x10000;
  174. return _fromCC((offset >>> 10) + 0xD800) + _fromCC((offset & 0x3FF) + 0xDC00);
  175. case 3:
  176. return _fromCC((0x0f & cccc.charCodeAt(0)) << 12 | (0x3f & cccc.charCodeAt(1)) << 6 | 0x3f & cccc.charCodeAt(2));
  177. default:
  178. return _fromCC((0x1f & cccc.charCodeAt(0)) << 6 | 0x3f & cccc.charCodeAt(1));
  179. }
  180. };
  181. /**
  182. * @deprecated should have been internal use only.
  183. * @param {string} src UTF-16 string
  184. * @returns {string} UTF-8 string
  185. */
  186. var btou = function (b) {
  187. return b.replace(re_btou, cb_btou);
  188. };
  189. /**
  190. * polyfill version of `atob`
  191. */
  192. var atobPolyfill = function (asc) {
  193. // console.log('polyfilled');
  194. asc = asc.replace(/\s+/g, '');
  195. if (!b64re.test(asc)) throw new TypeError('malformed base64.');
  196. asc += '=='.slice(2 - (asc.length & 3));
  197. var u24,
  198. bin = '',
  199. r1,
  200. r2;
  201. for (var i = 0; i < asc.length;) {
  202. u24 = b64tab[asc.charAt(i++)] << 18 | b64tab[asc.charAt(i++)] << 12 | (r1 = b64tab[asc.charAt(i++)]) << 6 | (r2 = b64tab[asc.charAt(i++)]);
  203. bin += r1 === 64 ? _fromCC(u24 >> 16 & 255) : r2 === 64 ? _fromCC(u24 >> 16 & 255, u24 >> 8 & 255) : _fromCC(u24 >> 16 & 255, u24 >> 8 & 255, u24 & 255);
  204. }
  205. return bin;
  206. };
  207. /**
  208. * does what `window.atob` of web browsers do.
  209. * @param {String} asc Base64-encoded string
  210. * @returns {string} binary string
  211. */
  212. var _atob = _hasatob ? function (asc) {
  213. return atob(_tidyB64(asc));
  214. } : _hasBuffer ? function (asc) {
  215. return Buffer.from(asc, 'base64').toString('binary');
  216. } : atobPolyfill; //
  217. var _toUint8Array = _hasBuffer ? function (a) {
  218. return _U8Afrom(Buffer.from(a, 'base64'));
  219. } : function (a) {
  220. return _U8Afrom(_atob(a), function (c) {
  221. return c.charCodeAt(0);
  222. });
  223. };
  224. /**
  225. * converts a Base64 string to a Uint8Array.
  226. */
  227. var toUint8Array = function (a) {
  228. return _toUint8Array(_unURI(a));
  229. }; //
  230. var _decode = _hasBuffer ? function (a) {
  231. return Buffer.from(a, 'base64').toString('utf8');
  232. } : _TD ? function (a) {
  233. return _TD.decode(_toUint8Array(a));
  234. } : function (a) {
  235. return btou(_atob(a));
  236. };
  237. var _unURI = function (a) {
  238. return _tidyB64(a.replace(/[-_]/g, function (m0) {
  239. return m0 == '-' ? '+' : '/';
  240. }));
  241. };
  242. /**
  243. * converts a Base64 string to a UTF-8 string.
  244. * @param {String} src Base64 string. Both normal and URL-safe are supported
  245. * @returns {string} UTF-8 string
  246. */
  247. var decode = function (src) {
  248. return _decode(_unURI(src));
  249. };
  250. /**
  251. * check if a value is a valid Base64 string
  252. * @param {String} src a value to check
  253. */
  254. var isValid = function (src) {
  255. if (typeof src !== 'string') return false;
  256. var s = src.replace(/\s+/g, '').replace(/={0,2}$/, '');
  257. return !/[^\s0-9a-zA-Z\+/]/.test(s) || !/[^\s0-9a-zA-Z\-_]/.test(s);
  258. }; //
  259. var _noEnum = function (v) {
  260. return {
  261. value: v,
  262. enumerable: false,
  263. writable: true,
  264. configurable: true
  265. };
  266. };
  267. /**
  268. * extend String.prototype with relevant methods
  269. */
  270. var extendString = function () {
  271. var _add = function (name, body) {
  272. return Object.defineProperty(String.prototype, name, _noEnum(body));
  273. };
  274. _add('fromBase64', function () {
  275. return decode(this);
  276. });
  277. _add('toBase64', function (urlsafe) {
  278. return encode(this, urlsafe);
  279. });
  280. _add('toBase64URI', function () {
  281. return encode(this, true);
  282. });
  283. _add('toBase64URL', function () {
  284. return encode(this, true);
  285. });
  286. _add('toUint8Array', function () {
  287. return toUint8Array(this);
  288. });
  289. };
  290. /**
  291. * extend Uint8Array.prototype with relevant methods
  292. */
  293. var extendUint8Array = function () {
  294. var _add = function (name, body) {
  295. return Object.defineProperty(Uint8Array.prototype, name, _noEnum(body));
  296. };
  297. _add('toBase64', function (urlsafe) {
  298. return fromUint8Array(this, urlsafe);
  299. });
  300. _add('toBase64URI', function () {
  301. return fromUint8Array(this, true);
  302. });
  303. _add('toBase64URL', function () {
  304. return fromUint8Array(this, true);
  305. });
  306. };
  307. /**
  308. * extend Builtin prototypes with relevant methods
  309. */
  310. var extendBuiltins = function () {
  311. extendString();
  312. extendUint8Array();
  313. };
  314. var gBase64 = {
  315. version: version,
  316. VERSION: VERSION,
  317. atob: _atob,
  318. atobPolyfill: atobPolyfill,
  319. btoa: _btoa,
  320. btoaPolyfill: btoaPolyfill,
  321. fromBase64: decode,
  322. toBase64: encode,
  323. encode: encode,
  324. encodeURI: encodeURI,
  325. encodeURL: encodeURI,
  326. utob: utob,
  327. btou: btou,
  328. decode: decode,
  329. isValid: isValid,
  330. fromUint8Array: fromUint8Array,
  331. toUint8Array: toUint8Array,
  332. extendString: extendString,
  333. extendUint8Array: extendUint8Array,
  334. extendBuiltins: extendBuiltins
  335. }; //
  336. // export Base64 to the namespace
  337. //
  338. // ES5 is yet to have Object.assign() that may make transpilers unhappy.
  339. // gBase64.Base64 = Object.assign({}, gBase64);
  340. gBase64.Base64 = {};
  341. Object.keys(gBase64).forEach(function (k) {
  342. return gBase64.Base64[k] = gBase64[k];
  343. });
  344. return gBase64;
  345. });