Files
coa-elvui/ElvUI/Libraries/oUF/private.lua
T
Andrew6810 60ef8a38af init
2022-10-21 07:09:01 -07:00

26 lines
738 B
Lua

local parent, ns = ...
local Private = ns.oUF.Private
function Private.argcheck(value, num, ...)
assert(type(num) == 'number', "Bad argument #2 to 'argcheck' (number expected, got " .. type(num) .. ')')
for i = 1, select('#', ...) do
if(type(value) == select(i, ...)) then return end
end
local types = strjoin(', ', ...)
local name = debugstack(2,2,0):match(": in function [`<](.-)['>]")
error(string.format("Bad argument #%d to '%s' (%s expected, got %s)", num, name, types, type(value)), 3)
end
function Private.print(...)
print('|cff33ff99oUF:|r', ...)
end
function Private.error(...)
Private.print('|cffff0000Error:|r ' .. string.format(...))
end
function Private.unitExists(unit)
return unit and UnitExists(unit)
end