File

util/time.lua @ 9046:7cdc718312c8

util.dataforms: Include a fixed field in test
author Kim Alvefur <zash@zash.se>
date Sun, 15 Jul 2018 22:35:42 +0200
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;
}