Work with slim instead

This commit is contained in:
2026-06-01 07:01:25 -05:00
parent 0459b0a84e
commit 3e5932b2ad
18 changed files with 464 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
func FuncWithThis(
function,
thisVal
)
{
return ($$args)=>{
const newArgs = [thisVal];
each(var item : args) newArgs.Add(item);
return function.Call(newArgs);
};
}