File

util/time.lua @ 7480:3dc7de31d3d1

net.dns: don't use "for s,s in pairs..." (unused loop variable s) [luacheck]
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 09 Jul 2016 10:26:18 +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;
}