Searched refs:charsetPart (Results 1 – 1 of 1) sorted by relevance
376 function decodeEscape(charsetPart) { argument377 if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }378 switch (charsetPart.charAt(1)) {386 return parseInt(charsetPart.substring(2), 16)387 || charsetPart.charCodeAt(1);390 return parseInt(charsetPart.substring(1), 8);391 default: return charsetPart.charCodeAt(1);