kopia lustrzana https://github.com/backface/turtlestitch
fix missing return
rodzic
3250969c2f
commit
fd13010d1f
|
@ -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);
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue