create-script.ts

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

    document.body.appendChild(script);
}