Skip to content

Commit

Permalink
Update web contents
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 8, 2023
1 parent f19f012 commit 1294bd5
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions assets/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,15 +972,12 @@ class Cancellation {
isAlive() {
return this.state === 0 /* State.alive */;
}

isCancelled() {
return this.state === 1 /* State.cancelled */;
}

isClosed() {
return this.state === 2 /* State.closed */;
}

register$(listener) {
const {
handlers
Expand Down Expand Up @@ -4268,7 +4265,6 @@ class Internal {
isPending() {
return this.status.state === 0 /* State.pending */;
}

resolve(value) {
if (!this.isPending()) return;
if (!isPromiseLike(value)) {
Expand Down Expand Up @@ -5805,7 +5801,6 @@ class URL {

//assert(this.href.startsWith(this.resource));
}

get href() {
return this.params?.toString().replace(/^(?=.)/, `${this.url.href.slice(0, -this.url.query.length - this.url.fragment.length || this.url.href.length)}?`).concat(this.fragment) ?? this.url.href;
}
Expand Down

0 comments on commit 1294bd5

Please sign in to comment.