mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-14 23:10:02 -04:00
add lint command, lint and lint:fix project
This commit is contained in:
parent
430c7ad6ec
commit
93b609932d
23 changed files with 36916 additions and 25 deletions
|
@ -48,10 +48,11 @@ export function createLocationProxy(
|
|||
if (prop === "href") {
|
||||
// special case
|
||||
client.url = args[0];
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
let url = new URL(client.url.href);
|
||||
const url = new URL(client.url.href);
|
||||
url[prop] = args[0];
|
||||
client.url = url;
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue