File

util/time.lua @ 8143:c4c159953c72

mod_storage_internal: Handle case of empty item store when deleting (fixes #910)
author Kim Alvefur <zash@zash.se>
date Sun, 14 May 2017 17:31:50 +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;
}