File

util/time.lua @ 8956:82f92af4b0f3

util.pubsub: Return error code known by pubsub.lib if persistent creation fails
author Kim Alvefur <zash@zash.se>
date Sun, 01 Jul 2018 04:44:24 +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;
}