Skip to content
Snippets Groups Projects
Commit 814aac27 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Add an explicit undefined in there too.

parent 3d3b621f
No related branches found
No related tags found
No related merge requests found
Pipeline #7816 passed
const args = [ 1, 1.1, true, "one", -1, 1e9, null ];
const args = [ 1, 1.1, true, "one", -1, 1e9, null, undefined ];
const test = {
"%s": "1",
......@@ -20,8 +20,9 @@ const test = {
"%6$u": "1000000000",
"%7$u": "0",
"%7$s": "null",
"%7$s %s": "null %s",
"%8$s": "%8$s",
"%7$s %s": "null undefined",
"%8$s %s": "undefined %s",
"%9$s": "%9$s",
};
for (var i in test) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment