7 lines
225 B
TypeScript
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);
|
|
} |