return empty string when querying first letter of a list

pull/3/merge
Jens Mönig 2015-05-01 11:59:17 -04:00
rodzic c46d8093ef
commit b6efcaf17c
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff ////////////////////////////////////////////////////////
modules.threads = '2015-April-15';
modules.threads = '2015-May-01';
var ThreadManager;
var Process;
@ -2185,6 +2185,9 @@ Process.prototype.reportJoinWords = function (aList) {
// Process string ops
Process.prototype.reportLetter = function (idx, string) {
if (string instanceof List) { // catch a common user error
return '';
}
var i = +(idx || 0),
str = (string || '').toString();
return str[i - 1] || '';