view util/time.lua @ 7862:f5cbbf69cac8

mod_c2s: Clarify that there were no *stream* features to offer
author Kim Alvefur <zash@zash.se>
date Wed, 25 Jan 2017 10:47:31 +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;
}