Files
code-editor/shared/create-script.ts
T

7 lines
225 B
TypeScript

export function createScript(value: string) {
var script: HTMLScriptElement = document.createElement("script");
script.setAttribute("async", "");
script.innerHTML = value;
document.body.appendChild(script);
}