@@ -471,7 +471,9 @@ var base54 = (function() {
|
|||||||
base54.freq = function(){ return frequency };
|
base54.freq = function(){ return frequency };
|
||||||
function base54(num) {
|
function base54(num) {
|
||||||
var ret = "", base = 54;
|
var ret = "", base = 54;
|
||||||
|
num++;
|
||||||
do {
|
do {
|
||||||
|
num--;
|
||||||
ret += String.fromCharCode(chars[num % base]);
|
ret += String.fromCharCode(chars[num % base]);
|
||||||
num = Math.floor(num / base);
|
num = Math.floor(num / base);
|
||||||
base = 64;
|
base = 64;
|
||||||
|
|||||||
Reference in New Issue
Block a user