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