mol_plot_all 1.2.819 → 1.2.821
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 +6 -1
- package/node.js.map +1 -1
- package/node.mjs +6 -1
- package/node.test.js +6 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -1
- package/web.js.map +1 -1
- package/web.mjs +6 -1
package/web.mjs
CHANGED
|
@@ -331,7 +331,12 @@ var $;
|
|
|
331
331
|
if (!val)
|
|
332
332
|
return null;
|
|
333
333
|
if ($.$mol_dev_format_head in val) {
|
|
334
|
-
|
|
334
|
+
try {
|
|
335
|
+
return val[$.$mol_dev_format_head]();
|
|
336
|
+
}
|
|
337
|
+
catch (error) {
|
|
338
|
+
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
|
|
339
|
+
}
|
|
335
340
|
}
|
|
336
341
|
if (typeof val === 'function') {
|
|
337
342
|
return $mol_dev_format_native(val);
|