mol_jsx_lib 0.0.767 → 0.0.768
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.deps.json +1 -1
- package/node.js +3 -0
- package/node.js.map +1 -1
- package/node.mjs +3 -0
- package/node.test.js +3 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +3 -0
- package/web.js.map +1 -1
- package/web.mjs +3 -0
package/node.mjs
CHANGED
|
@@ -1168,6 +1168,9 @@ var $;
|
|
|
1168
1168
|
if (typeof val === 'function') {
|
|
1169
1169
|
return $mol_dev_format_native(val);
|
|
1170
1170
|
}
|
|
1171
|
+
if (Symbol.toStringTag in val) {
|
|
1172
|
+
return $mol_dev_format_native(val);
|
|
1173
|
+
}
|
|
1171
1174
|
return null;
|
|
1172
1175
|
},
|
|
1173
1176
|
hasBody: val => val[$.$mol_dev_format_body],
|
package/node.test.js
CHANGED
|
@@ -1159,6 +1159,9 @@ var $;
|
|
|
1159
1159
|
if (typeof val === 'function') {
|
|
1160
1160
|
return $mol_dev_format_native(val);
|
|
1161
1161
|
}
|
|
1162
|
+
if (Symbol.toStringTag in val) {
|
|
1163
|
+
return $mol_dev_format_native(val);
|
|
1164
|
+
}
|
|
1162
1165
|
return null;
|
|
1163
1166
|
},
|
|
1164
1167
|
hasBody: val => val[$.$mol_dev_format_body],
|