21 lines
527 B
JavaScript
21 lines
527 B
JavaScript
/////////////////// injected /////////////////////////
|
|
const thisURL = new URL(import.meta.url)
|
|
const thisFile = thisURL.pathname;
|
|
if(!thisURL.search)
|
|
{
|
|
await import("./test_sockets.mjs").then(m=>m.Register(thisFile, (module)=>{
|
|
for(let key in module)
|
|
{
|
|
eval(`${key}=module.${key}`);
|
|
}
|
|
}));
|
|
}
|
|
////////////////////////////////////////////
|
|
|
|
import spoofHook from "./test_framework.mjs?changer_other"
|
|
export let changing = "456";
|
|
|
|
export function Component()
|
|
{
|
|
spoofHook();
|
|
} |