咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
const charTable=[
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', '2', '3', '4', '5', '6', '7',
'='
],allowedPeddingCount=[6,4,3,1,0];
function str_split(str,length){
if(typeof str !== 'string')return [];
let a=[],i=0;
length||(length=1);
do{
a.push(str.substr(i,length));
i+=length;
}while(i