Removed unneeded comments

This commit is contained in:
2023-05-09 09:29:24 +02:00
parent d7ed71b05d
commit 8107f9ed7a

View File

@@ -10,8 +10,8 @@ const tools = new Map();
* @returns {void}
*/
function importScript(url) {
var script = document.createElement("script"); // create a script DOM node
script.src = url; // set its src to the provided URL
var script = document.createElement("script");
script.src = url;
document.head.appendChild(script);
}