aboutsummaryrefslogblamecommitdiffstats
path: root/lua/inet/common.lua
blob: 6a84a13b2157a64fbaa31bb124f8621c01a50d33 (plain) (tree)
1
2
3
4
5
6
7
8







                                                 
local M = {}

function M.get_mt(t)
	if type(t) ~= 'table' then return nil end
	return getmetatable(t)
end

return M