mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-29 18:53:44 +01:00
6 lines
124 B
Lua
6 lines
124 B
Lua
|
function curry(func, ...)
|
||
|
local args = {...}
|
||
|
return function(...)
|
||
|
return func(unpack(args), ...)
|
||
|
end
|
||
|
end
|