dalobstah

Results 1 comments of dalobstah

Replacing the `gmElement` function with the code below fixes the issue for me: ```js function gmElement(name) { const cls = gm[name]; const args = slice(arguments, 1); return Reflect.construct(cls, args); }...