Skip to content

Commit

Permalink
Deployed using Blazing fast GitHub Pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Dec 10, 2023
1 parent 8294609 commit 88f61c4
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion 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: 3 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ var $;
var $;
(function ($) {
function $mol_promise_like(val) {
return val && typeof val.then === 'function';
return val && typeof val === 'object' && 'then' in val && typeof val.then === 'function';
}
$.$mol_promise_like = $mol_promise_like;
})($ || ($ = {}));
Expand Down Expand Up @@ -923,6 +923,8 @@ var $;
return value;
if (value instanceof RegExp)
return value.toString();
if (value instanceof Uint8Array)
return [...value];
let key = $.$mol_key_store.get(value);
if (key)
return key;
Expand Down
9 changes: 8 additions & 1 deletion 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: 3 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.

4 changes: 3 additions & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ var $;
var $;
(function ($) {
function $mol_promise_like(val) {
return val && typeof val.then === 'function';
return val && typeof val === 'object' && 'then' in val && typeof val.then === 'function';
}
$.$mol_promise_like = $mol_promise_like;
})($ || ($ = {}));
Expand Down Expand Up @@ -914,6 +914,8 @@ var $;
return value;
if (value instanceof RegExp)
return value.toString();
if (value instanceof Uint8Array)
return [...value];
let key = $.$mol_key_store.get(value);
if (key)
return key;
Expand Down
5 changes: 5 additions & 0 deletions 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 88f61c4

Please sign in to comment.