mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 15:23:48 +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 |