mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
11 lines
372 B
Lua
11 lines
372 B
Lua
|
--- Formats a key-value table of values as a string.
|
||
|
-- @param map table The table of key-value pairs to format.
|
||
|
-- @returns string The given table of key-value pairs formatted as a string.
|
||
|
function worldeditadditions.format.map(map)
|
||
|
local result = {}
|
||
|
for key, value in pairs(map) do
|
||
|
table.insert(result, key.."\t"..value)
|
||
|
end
|
||
|
return table.concat(result, "\n")
|
||
|
end
|