mirror of
https://github.com/TangentFoxy/lume.git
synced 2026-03-14 12:46:51 -06:00
Fixed lume.format() where missing keys were not ignored
This commit is contained in:
@@ -231,7 +231,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
function lume.format(str, vars)
|
function lume.format(str, vars)
|
||||||
local f = function(x) return tostring(vars[x]) or "{" .. x .. "}" end
|
local f = function(x) return tostring(vars[x] or "{" .. x .. "}") end
|
||||||
return (str:gsub("{(.-)}", f))
|
return (str:gsub("{(.-)}", f))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user