diff --git a/noname/get/index.js b/noname/get/index.js index 23497735c..db64d8921 100644 --- a/noname/get/index.js +++ b/noname/get/index.js @@ -4664,7 +4664,7 @@ export class Get extends Uninstantable { */ static dynamicVariable(source){ if(typeof source == 'function'){ - return source.call(null,...(arguments.slice(1))); + return source.call(null,...(Array.from(arguments).slice(1))); } return source; }