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 19, 2023
1 parent f2f5cc1 commit 5a156ad
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 13 deletions.
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ var $;
$.$mol_dev_format_element = $mol_dev_format_element;
function $mol_dev_format_span(style, ...content) {
return $mol_dev_format_element('span', {
'vertical-align': '8%',
...style,
}, ...content);
}
Expand Down Expand Up @@ -1003,6 +1002,8 @@ var $;
return true;
}
function compare_buffer(left, right) {
if (left instanceof DataView)
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
const len = left.byteLength;
if (len !== right.byteLength)
return false;
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ var $;
$.$mol_dev_format_element = $mol_dev_format_element;
function $mol_dev_format_span(style, ...content) {
return $mol_dev_format_element('span', {
'vertical-align': '8%',
...style,
}, ...content);
}
Expand Down Expand Up @@ -1003,6 +1002,8 @@ var $;
return true;
}
function compare_buffer(left, right) {
if (left instanceof DataView)
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
const len = left.byteLength;
if (len !== right.byteLength)
return false;
Expand Down
10 changes: 8 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ var $;
$.$mol_dev_format_element = $mol_dev_format_element;
function $mol_dev_format_span(style, ...content) {
return $mol_dev_format_element('span', {
'vertical-align': '8%',
...style,
}, ...content);
}
Expand Down Expand Up @@ -995,6 +994,8 @@ var $;
return true;
}
function compare_buffer(left, right) {
if (left instanceof DataView)
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
const len = left.byteLength;
if (len !== right.byteLength)
return false;
Expand Down Expand Up @@ -13155,6 +13156,11 @@ var $;
$mol_assert_ok($mol_compare_deep(new Uint8Array([0]), new Uint8Array([0])));
$mol_assert_not($mol_compare_deep(new Uint8Array([0]), new Uint8Array([1])));
},
'DataView'() {
$mol_assert_ok($mol_compare_deep(new DataView(new Uint8Array().buffer), new DataView(new Uint8Array().buffer)));
$mol_assert_ok($mol_compare_deep(new DataView(new Uint8Array([0]).buffer), new DataView(new Uint8Array([0]).buffer)));
$mol_assert_not($mol_compare_deep(new DataView(new Uint8Array([0]).buffer), new DataView(new Uint8Array([1]).buffer)));
},
'Serializale'() {
class User {
name;
Expand Down Expand Up @@ -13265,7 +13271,7 @@ var $;
if ('outerHTML' in val)
return val.outerHTML;
try {
return JSON.stringify(val, null, '\t');
return JSON.stringify(val, (k, v) => typeof v === 'bigint' ? String(v) : v, '\t');
}
catch (error) {
console.error(error);
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.

3 changes: 2 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.

3 changes: 2 additions & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ var $;
$.$mol_dev_format_element = $mol_dev_format_element;
function $mol_dev_format_span(style, ...content) {
return $mol_dev_format_element('span', {
'vertical-align': '8%',
...style,
}, ...content);
}
Expand Down Expand Up @@ -994,6 +993,8 @@ var $;
return true;
}
function compare_buffer(left, right) {
if (left instanceof DataView)
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
const len = left.byteLength;
if (len !== right.byteLength)
return false;
Expand Down
7 changes: 6 additions & 1 deletion web.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 web.test.js.map

Large diffs are not rendered by default.

0 comments on commit 5a156ad

Please sign in to comment.