mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
docs: update sandbox snippet in docs
This commit is contained in:
parent
215ccb87a1
commit
a22d9d2dc5
1 changed files with 5 additions and 1 deletions
|
@ -105,7 +105,11 @@ local function discoverAndReadScript(filePath: string): string
|
|||
end
|
||||
|
||||
local function sandboxGetfenv(): {}
|
||||
return table.freeze(SANDBOXED_ENV)
|
||||
if table.isfrozen(SANDBOXED_ENV) then
|
||||
return SANDBOXED_ENV.environment
|
||||
end
|
||||
|
||||
return {}
|
||||
end
|
||||
|
||||
local function sandboxSetfenv(env: {}): never
|
||||
|
|
Loading…
Add table
Reference in a new issue