Removed deps from runtime.

This commit is contained in:
Radosław Miernik
2024-04-18 07:45:39 +02:00
parent 23a84c6838
commit 6215bc4e3a

View File

@@ -8,7 +8,7 @@
var hasOwn = Object.prototype.hasOwnProperty;
var pending = [];
function queue(name, deps, runImage) {
function queue(name, runImage) {
pending.push({name: name, runImage: runImage});
processNext();
}