Skip to content

Commit

Permalink
Deploying to gh-pages from @ a383171 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Jan 4, 2024
1 parent f7ac1a4 commit adbc9d9
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions node.js

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

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

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1615,13 +1615,17 @@ var $;
function $mol_key(value) {
if (typeof value === 'bigint')
return value.toString() + 'n';
if (typeof value === 'symbol')
return value.description;
if (!value)
return JSON.stringify(value);
if (typeof value !== 'object' && typeof value !== 'function')
return JSON.stringify(value);
return JSON.stringify(value, (field, value) => {
if (typeof value === 'bigint')
return value.toString() + 'n';
if (typeof value === 'symbol')
return value.description;
if (!value)
return value;
if (typeof value !== 'object' && typeof value !== 'function')
Expand Down
4 changes: 4 additions & 0 deletions node.test.js

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

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.

4 changes: 4 additions & 0 deletions 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.

4 changes: 4 additions & 0 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1109,13 +1109,17 @@ var $;
function $mol_key(value) {
if (typeof value === 'bigint')
return value.toString() + 'n';
if (typeof value === 'symbol')
return value.description;
if (!value)
return JSON.stringify(value);
if (typeof value !== 'object' && typeof value !== 'function')
return JSON.stringify(value);
return JSON.stringify(value, (field, value) => {
if (typeof value === 'bigint')
return value.toString() + 'n';
if (typeof value === 'symbol')
return value.description;
if (!value)
return value;
if (typeof value !== 'object' && typeof value !== 'function')
Expand Down

0 comments on commit adbc9d9

Please sign in to comment.