Files
wow-weakauras/Meta/api/scrub.lua
2024-11-07 23:12:37 +01:00

6 lines
390 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@param ... list
---@return list ...
---Replaces non-simple values in a list with nil. All simple values (strings, numbers, and booleans) are passed from the input list to the output list unchanged. Non-simple values (tables, functions, threads, and userdata) are replaced by nil in the output list.
function scrub(...) end