Add os.datetable(), a (very) limited wrapper for os.date(). Fixes #246.

This commit is contained in:
Carter Kolwey 2016-01-02 01:13:38 -06:00
parent eab09b9d73
commit 35b647ed4a
1 changed files with 5 additions and 0 deletions

View File

@ -201,6 +201,10 @@ local function safe_print(param)
print(dump(param))
end
local function safe_date()
return(os.date("*t",os.time()))
end
local function remove_functions(x)
local tp = type(x)
if tp == "table" then
@ -321,6 +325,7 @@ local function create_environment(pos, mem, event)
clock = os.clock,
difftime = os.difftime,
time = os.time,
datetable = safe_date,
},
}
env._G = env