This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var jsBase64 = (function() { | |
var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; | |
// public method for encoding | |
function encode(data) { | |
var o1, o2, o3, h1, h2, h3, h4, bits, i = 0, ac = 0, enc = "", | |
tmp_arr = []; | |
if (!data) |