We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99260f8 commit 3fc342eCopy full SHA for 3fc342e
1 file changed
src/js/MethodTable.js
@@ -158,8 +158,7 @@ var logDumper = (function($, module){
158
value = typeof row[k] !== "undefined"
159
? row[k]
160
: module.UNDEFINED;
161
- isAbstraction = typeof value == "object" && typeof value.debug == "string" && value.debug == module.ABSTRACTION;
162
- if (isAbstraction && value.type == "object") {
+ if (module.getType(value) == "object") {
163
if (value.stringified && value.stringified.length) {
164
value = value.stringified;
165
} else if (typeof value.methods.__toString !== "undefined") {
0 commit comments