export function attachScript(source: string) { const script = document.createElement("script"); script.src = source; document.head.append(script); }