File

util/time.lua @ 7565:2ef93ba18336

ejabberdsql2prosody: remove unused function pushback() [luacheck] The same function seems to exist in tools/erlparse.lua, also unused.
author Anton Shestakov <av6@dwimlabs.net>
date Fri, 12 Aug 2016 13:29:27 +0800
parent 7461:72e48bddf617
line wrap: on
line source

-- 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;
}