util.format: Serialize values for the %q format

Improves eg debug logs
This commit is contained in:
Kim Alvefur 2018-10-12 01:29:34 +02:00
parent 5a608450d5
commit 177420df39
2 changed files with 6 additions and 1 deletions

View file

@ -11,6 +11,7 @@ describe("util.format", function()
assert.equal("true", format("%s", true));
assert.equal("[true]", format("%d", true));
assert.equal("% [true]", format("%%", true));
assert.equal("{ }", format("%q", { }));
end);
end);
end);