lookingGlass: Fix referencing undefined variables

This commit is contained in:
Jasper St. Pierre 2011-10-04 16:50:51 -04:00
parent f13f5bc1bb
commit 4831d9c3a3

View File

@ -159,7 +159,7 @@ function objectToString(o) {
// special case this since the default is way, way too verbose
return '<js function>';
} else {
return o.toString();
return '' + o;
}
}