Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Percslol committed Oct 17, 2024
1 parent ca79f50 commit 1f74ffe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/client/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export function createGlobalProxy(
set(target, prop, value) {
if (prop === "location") {
client.url = value;
return;

return;
}

return Reflect.set(target, prop, value);
Expand Down
1 change: 0 additions & 1 deletion src/client/shared/err.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export function argdbg(arg, recurse = []) {
switch (typeof arg) {
case "string":
if (arg.includes("localhost:1337/scramjet/") && arg.includes("m3u8"))

debugger;
break;
case "object":
Expand Down
4 changes: 2 additions & 2 deletions src/shared/rewriters/js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export function rewriteJs(js: string | ArrayBuffer, meta: URLMeta) {
const text = typeof js === "string" ? js : new TextDecoder().decode(js);

console.log("naiive");
return rewriteJsNaiive(text);

return rewriteJsNaiive(text);
}

// const before = performance.now();
Expand Down

0 comments on commit 1f74ffe

Please sign in to comment.