Files
wow_Meta/api/scrub.lua
2025-05-04 14:35:26 +02:00

7 lines
384 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