All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.base64-map.js Maven / Gradle / Ivy

There is a newer version: 3.39.0
Show newest version
'use strict';
var itoc = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
var ctoi = {};

for (var index = 0; index < 66; index++) ctoi[itoc.charAt(index)] = index;

module.exports = {
  itoc: itoc,
  ctoi: ctoi
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy