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 Nov 11, 2023
1 parent 85f8a30 commit 004493d
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 11 deletions.
2 changes: 1 addition & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ declare namespace $ {

declare namespace $ {
class $mol_storage extends $mol_object2 {
static native(): null;
static native(): any;
static persisted(next?: boolean): boolean;
static estimate(): number;
static dir(): FileSystemDirectoryHandle;
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

7 changes: 6 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.

7 changes: 6 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4264,7 +4264,12 @@ var $;
}
else {
this.native().setItem(key, JSON.stringify(next));
this.$.$mol_storage.persisted(true);
try {
this.$.$mol_storage.persisted(true);
}
catch (error) {
$mol_fail_log(error);
}
}
return next;
}
Expand Down
7 changes: 6 additions & 1 deletion node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4256,7 +4256,12 @@ var $;
}
else {
this.native().setItem(key, JSON.stringify(next));
this.$.$mol_storage.persisted(true);
try {
this.$.$mol_storage.persisted(true);
}
catch (error) {
$mol_fail_log(error);
}
}
return next;
}
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 @@ -3742,7 +3742,12 @@ var $;
}
else {
this.native().setItem(key, JSON.stringify(next));
this.$.$mol_storage.persisted(true);
try {
this.$.$mol_storage.persisted(true);
}
catch (error) {
$mol_fail_log(error);
}
}
return next;
}
Expand Down

0 comments on commit 004493d

Please sign in to comment.