view util/time.lua @ 8821:c1014eac2a1a

.luacheckrc: Only ignore warnings for excluded files, not syntax errors
author Kim Alvefur <zash@zash.se>
date Wed, 23 May 2018 00:55:33 +0200
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;
}