File

util/time.lua @ 8554:12a68e0d0ecf

Makefile: Also package /net/resolvers Fixes #1094
author Michel Le Bihan <michel@lebihan.pl>
date Wed, 28 Feb 2018 18:12:20 +0100
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;
}