1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-01-12 09:32:57 +08:00
cfx-server-data/resources/[system]/runcode/runcode_shared.lua
2019-12-10 09:54:29 +01:00

32 lines
510 B
Lua

local runners = {}
function runners.lua(arg)
local code, err = load('return ' .. arg, '@runcode')
-- if failed, try without return
if err then
code, err = load(arg, '@runcode')
end
if err then
print(err)
return nil, err
end
local status, result = pcall(code)
print(result)
if status then
return result
end
return nil, result
end
function runners.js(arg)
return table.unpack(exports[GetCurrentResourceName()]:runJS(arg))
end
function RunCode(lang, str)
return runners[lang](str)
end