docs: update sandbox snippet in docs

This commit is contained in:
Erica Marigold 2024-05-15 22:07:25 +05:30
parent 215ccb87a1
commit a22d9d2dc5
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -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