This commit is contained in:
kuangthree 2024-02-14 17:51:03 +08:00
parent d99e949da9
commit 7293e60086
1 changed files with 1 additions and 1 deletions

View File

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