File

util/time.lua @ 7821:0dea440bdd46

CHANGES: Mention removal of mod_compression
author Kim Alvefur <zash@zash.se>
date Fri, 13 Jan 2017 18:29:30 +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;
}