mol_wire_lib 1.0.810 → 1.0.812
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.test.js.map +1 -1
package/web.mjs
CHANGED
|
@@ -150,7 +150,12 @@ var $;
|
|
|
150
150
|
if (!val)
|
|
151
151
|
return null;
|
|
152
152
|
if ($.$mol_dev_format_head in val) {
|
|
153
|
-
|
|
153
|
+
try {
|
|
154
|
+
return val[$.$mol_dev_format_head]();
|
|
155
|
+
}
|
|
156
|
+
catch (error) {
|
|
157
|
+
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
|
|
158
|
+
}
|
|
154
159
|
}
|
|
155
160
|
if (typeof val === 'function') {
|
|
156
161
|
return $mol_dev_format_native(val);
|