fix missing return

upd4.2
Michael Ball 2017-11-07 21:25:23 -08:00
rodzic 3250969c2f
commit fd13010d1f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2700,7 +2700,7 @@ Process.prototype.reportUnicodeAsLetter = function (num) {
var code = +(num || 0); var code = +(num || 0);
if (String.fromCodePoint) { // support for Unicode in newer browsers. if (String.fromCodePoint) { // support for Unicode in newer browsers.
String.fromCodePoint(code); return String.fromCodePoint(code);
} }
return String.fromCharCode(code); return String.fromCharCode(code);
}; };