util.time: New tiny library to abstract LuaSocket's gettime() function, so we can use other sources in the future

This commit is contained in:
Matthew Wild 2016-06-28 14:49:44 +01:00
parent 03e138c59a
commit 6fc4ad3aef

8
util/time.lua Normal file
View file

@ -0,0 +1,8 @@
-- Import gettime() from LuaSocket, as a way to access high-resolution time
-- in a platform-independent way
local socket_gettime = require "socket".gettime;
return {
now = socket_gettime;
}