Removed unneeded comments

This commit is contained in:
2023-05-09 09:29:24 +02:00
parent a4726dad55
commit 7c97c7fc86

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);
}