Files
wow_Meta/api/strconcat.lua
2024-12-16 13:13:08 +01:00

6 lines
272 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@param ... string
---@return string result
---Joins a list of strings (with no separator). Equivalent to strjoin("", ...). If no strings are provided, returns the empty string ("").
function strconcat(...) end