view util/time.lua @ 8618:680b1caa2dea

util.async: tests: replace peeking at internal state with monitoring correct callback behaviour
author Matthew Wild <mwild1@gmail.com>
date Sat, 17 Mar 2018 17:59:58 +0000
parents 72e48bddf617
children
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;
}