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 Sep 20, 2023
1 parent 7584624 commit c8243c0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ declare namespace $ {
/// <reference types="node" />
/// <reference types="node" />
declare namespace $ {
function $mol_exec(this: $, dir: string, command: string, ...args: string[]): import("node:child_process").SpawnSyncReturns<Buffer>;
function $mol_exec(this: $, dir: string, command: string, ...args: string[]): import("child_process").SpawnSyncReturns<Buffer>;
}

declare namespace $ {
Expand Down
2 changes: 1 addition & 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.

2 changes: 1 addition & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8368,7 +8368,7 @@ var $;
title() {
const uri = this.uri();
const host = this.host();
const suffix = (host ? uri.split(this.host(), 2)[1] : uri).replace(/^[\/\?#!]+/, '');
const suffix = (host ? uri.split(this.host(), 2)[1] : uri)?.replace(/^[\/\?#!]+/, '');
return decodeURIComponent(suffix || host).replace(/^\//, ' ');
}
sub() {
Expand Down
2 changes: 1 addition & 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.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.

2 changes: 1 addition & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7744,7 +7744,7 @@ var $;
title() {
const uri = this.uri();
const host = this.host();
const suffix = (host ? uri.split(this.host(), 2)[1] : uri).replace(/^[\/\?#!]+/, '');
const suffix = (host ? uri.split(this.host(), 2)[1] : uri)?.replace(/^[\/\?#!]+/, '');
return decodeURIComponent(suffix || host).replace(/^\//, ' ');
}
sub() {
Expand Down

0 comments on commit c8243c0

Please sign in to comment.