7 lines
319 B
Lua
7 lines
319 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param f function
|
|
---@param stackLevel number
|
|
---@return table env
|
|
---Returns the environment for a function (or the global environment). If the environment has a __environment metatable, that value is returned instead.
|
|
function getfenv(f, stackLevel) end |