6 lines
385 B
Lua
6 lines
385 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 |