Sha256: 0d1974a3a03081f1302bcea85e811d1a59f3e31b757dedcedbd75e2fb1c88560

Contents?: true

Size: 1.11 KB

Versions: 409

Compression:

Stored size: 1.11 KB

Contents

/* -*- Mode: js; js-indent-level: 2; -*- */
/*
 * Copyright 2011 Mozilla Foundation and contributors
 * Licensed under the New BSD license. See LICENSE or:
 * http://opensource.org/licenses/BSD-3-Clause
 */
if (typeof define !== 'function') {
    var define = require('amdefine')(module, require);
}
define(function (require, exports, module) {

  var charToIntMap = {};
  var intToCharMap = {};

  'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
    .split('')
    .forEach(function (ch, index) {
      charToIntMap[ch] = index;
      intToCharMap[index] = ch;
    });

  /**
   * Encode an integer in the range of 0 to 63 to a single base 64 digit.
   */
  exports.encode = function base64_encode(aNumber) {
    if (aNumber in intToCharMap) {
      return intToCharMap[aNumber];
    }
    throw new TypeError("Must be between 0 and 63: " + aNumber);
  };

  /**
   * Decode a single base 64 digit to an integer.
   */
  exports.decode = function base64_decode(aChar) {
    if (aChar in charToIntMap) {
      return charToIntMap[aChar];
    }
    throw new TypeError("Not a valid base 64 digit: " + aChar);
  };

});

Version data entries

409 entries across 196 versions & 22 rubygems

Version Path
es6_tilt-0.1.2 test/dummy/node_modules/babel-register/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.2 test/dummy/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.2 test/dummy/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.1 test/dummy/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.1 test/dummy/app/assets/javascripts/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.1 test/dummy/app/assets/javascripts/node_modules/jstransform/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.1 test/dummy/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.1 test/dummy/node_modules/babel-register/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.0 test/dummy/app/assets/javascripts/node_modules/jstransform/node_modules/source-map/lib/source-map/base64.js
es6_tilt-0.1.0 test/dummy/app/assets/javascripts/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.22 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.21 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.20 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.19 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.18 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.17 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.16 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.15 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.14 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
trusty-festivity-extension-2.3.13 node_modules/bower/node_modules/handlebars/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js