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 Feb 26, 2024
1 parent b581660 commit 4f05bb9
Show file tree
Hide file tree
Showing 14 changed files with 216 additions and 165 deletions.
144 changes: 73 additions & 71 deletions node.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.d.ts.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

19 changes: 15 additions & 4 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.

19 changes: 15 additions & 4 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2028,8 +2028,9 @@ var $;
shell: true,
env: this.$mol_env(),
});
if (res.status || res.error)
return $mol_fail(res.error || new Error(res.stderr.toString()));
if (res.status || res.error) {
return $mol_fail(res.error || new Error(res.stderr.toString(), { cause: res.stdout }));
}
if (!res.stdout)
res.stdout = Buffer.from([]);
return res;
Expand Down Expand Up @@ -3898,9 +3899,13 @@ var $;
return exists;
if (next === exists)
return exists;
if (next)
if (next) {
this.parent().exists(true);
this.ensure();
this.ensure();
}
else {
this.drop();
}
this.reset();
return next;
}
Expand Down Expand Up @@ -4081,6 +4086,9 @@ var $;
this.$.$mol_fail_hidden(e);
}
}
drop() {
$node.fs.unlinkSync(this.path());
}
buffer(next) {
const path = this.path();
if (next === undefined) {
Expand Down Expand Up @@ -4164,6 +4172,9 @@ var $;
__decorate([
$mol_mem
], $mol_file_node.prototype, "ensure", null);
__decorate([
$mol_action
], $mol_file_node.prototype, "drop", null);
__decorate([
$mol_mem
], $mol_file_node.prototype, "buffer", null);
Expand Down
19 changes: 15 additions & 4 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.

Loading

0 comments on commit 4f05bb9

Please sign in to comment.