Home
last modified time | relevance | path

Searched refs:utftext (Results 1 – 1 of 1) sorted by relevance

/plugin/diagramsnet/lib/js/deflate/
Dbase64.js96 var utftext = "";
103 utftext += String.fromCharCode(c);
106 utftext += String.fromCharCode((c >> 6) | 192);
107 utftext += String.fromCharCode((c & 63) | 128);
110 utftext += String.fromCharCode((c >> 12) | 224);
111 utftext += String.fromCharCode(((c >> 6) & 63) | 128);
112 utftext += String.fromCharCode((c & 63) | 128);
117 return utftext;
121 _utf8_decode : function (utftext) { argument
126 while ( i < utftext.length ) {
[all …]