JavaScript 65.5%
Python 17.8%
CSS 13%
HTML 3.7%
1"use strict";23function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }4Object.defineProperty(exports, "__esModule", {5 value: true6});7exports["default"] = void 0;8var Log = _interopRequireWildcard(require("./util/logging.js"));9function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }10function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }11/* This Source Code Form is subject to the terms of the Mozilla Public12 * License, v. 2.0. If a copy of the MPL was not distributed with this13 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */14// From: http://hg.mozilla.org/mozilla-central/raw-file/ec10630b1a54/js/src/devtools/jint/sunspider/string-base64.js15var _default = exports["default"] = {16 /* Convert data (an array of integers) to a Base64 string. */17 toBase64Table: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split(''),18 base64Pad: '=',19 encode: function encode(data) {20 "use strict";2122 var result = '';23 var length = data.length;24 var lengthpad = length % 3;25 // Convert every three bytes to 4 ascii characters.2627 for (var i = 0; i < length - 2; i += 3) {28 result += this.toBase64Table[data[i] >> 2];29 result += this.toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)];30 result += this.toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)];31 result += this.toBase64Table[data[i + 2] & 0x3f];32 }3334 // Convert the remaining 1 or 2 bytes, pad out to 4 characters.35 var j = length - lengthpad;36 if (lengthpad === 2) {37 result += this.toBase64Table[data[j] >> 2];38 result += this.toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)];39 result += this.toBase64Table[(data[j + 1] & 0x0f) << 2];40 result += this.toBase64Table[64];41 } else if (lengthpad === 1) {42 result += this.toBase64Table[data[j] >> 2];43 result += this.toBase64Table[(data[j] & 0x03) << 4];44 result += this.toBase64Table[64];45 result += this.toBase64Table[64];46 }47 return result;48 },49 /* Convert Base64 data to a string */50 /* eslint-disable comma-spacing */51 toBinaryTable: [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, 0, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1],52 /* eslint-enable comma-spacing */decode: function decode(data) {53 var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;54 var dataLength = data.indexOf('=') - offset;55 if (dataLength < 0) {56 dataLength = data.length - offset;57 }5859 /* Every four characters is 3 resulting numbers */60 var resultLength = (dataLength >> 2) * 3 + Math.floor(dataLength % 4 / 1.5);61 var result = new Array(resultLength);6263 // Convert one by one.6465 var leftbits = 0; // number of bits decoded, but yet to be appended66 var leftdata = 0; // bits decoded, but yet to be appended67 for (var idx = 0, i = offset; i < data.length; i++) {68 var c = this.toBinaryTable[data.charCodeAt(i) & 0x7f];69 var padding = data.charAt(i) === this.base64Pad;70 // Skip illegal characters and whitespace71 if (c === -1) {72 Log.Error("Illegal character code " + data.charCodeAt(i) + " at position " + i);73 continue;74 }7576 // Collect data into leftdata, update bitcount77 leftdata = leftdata << 6 | c;78 leftbits += 6;7980 // If we have 8 or more bits, append 8 bits to the result81 if (leftbits >= 8) {82 leftbits -= 8;83 // Append if not padding.84 if (!padding) {85 result[idx++] = leftdata >> leftbits & 0xff;86 }87 leftdata &= (1 << leftbits) - 1;88 }89 }9091 // If there are any bits left, the base64 string was corrupted92 if (leftbits) {93 var err = new Error('Corrupted base64 string');94 err.name = 'Base64-Error';95 throw err;96 }97 return result;98 }99};100/* End of Base64 namespace */