Skip to content

Commit

Permalink
Deploying to gh-pages from @ b9e61e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelZubkov committed Nov 22, 2023
1 parent b1ae40f commit b1e8f6e
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 10 deletions.
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,12 @@ var $;
if (!val)
return null;
if ($.$mol_dev_format_head in val) {
return val[$.$mol_dev_format_head]();
try {
return val[$.$mol_dev_format_head]();
}
catch (error) {
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
}
}
if (typeof val === 'function') {
return $mol_dev_format_native(val);
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,12 @@ var $;
if (!val)
return null;
if ($.$mol_dev_format_head in val) {
return val[$.$mol_dev_format_head]();
try {
return val[$.$mol_dev_format_head]();
}
catch (error) {
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
}
}
if (typeof val === 'function') {
return $mol_dev_format_native(val);
Expand Down
7 changes: 6 additions & 1 deletion node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,12 @@ var $;
if (!val)
return null;
if ($.$mol_dev_format_head in val) {
return val[$.$mol_dev_format_head]();
try {
return val[$.$mol_dev_format_head]();
}
catch (error) {
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
}
}
if (typeof val === 'function') {
return $mol_dev_format_native(val);
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,12 @@ var $;
if (!val)
return null;
if ($.$mol_dev_format_head in val) {
return val[$.$mol_dev_format_head]();
try {
return val[$.$mol_dev_format_head]();
}
catch (error) {
return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
}
}
if (typeof val === 'function') {
return $mol_dev_format_native(val);
Expand Down

0 comments on commit b1e8f6e

Please sign in to comment.