view util/time.lua @ 7832:d02ef0ae94af

util.crand: TODOs
author Kim Alvefur <zash@zash.se>
date Sun, 22 Jan 2017 09:55:52 +0100
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;
}