Skip to content

Commit

Permalink
Deploying to gh-pages from @ a6aac9c 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Aug 26, 2024
1 parent b456ad8 commit 98cfb45
Show file tree
Hide file tree
Showing 12 changed files with 793 additions and 783 deletions.
778 changes: 389 additions & 389 deletions node.d.ts

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions node.js
Original file line number Diff line number Diff line change
Expand Up @@ -13306,6 +13306,8 @@ var $;
const value = this.value();
if (typeof value === 'number')
return value.toLocaleString('en').replaceAll(',', '_');
if (typeof value === 'bigint')
return value.toLocaleString('en').replaceAll(',', '_');
return value ? String(value) : JSON.stringify(value) ?? 'undefined';
}
expand_title() {
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13306,6 +13306,8 @@ var $;
const value = this.value();
if (typeof value === 'number')
return value.toLocaleString('en').replaceAll(',', '_');
if (typeof value === 'bigint')
return value.toLocaleString('en').replaceAll(',', '_');
return value ? String(value) : JSON.stringify(value) ?? 'undefined';
}
expand_title() {
Expand Down
2 changes: 2 additions & 0 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13297,6 +13297,8 @@ var $;
const value = this.value();
if (typeof value === 'number')
return value.toLocaleString('en').replaceAll(',', '_');
if (typeof value === 'bigint')
return value.toLocaleString('en').replaceAll(',', '_');
return value ? String(value) : JSON.stringify(value) ?? 'undefined';
}
expand_title() {
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 98cfb45

Please sign in to comment.