mirror of
https://github.com/google/go-jsonnet.git
synced 2026-04-07 22:41:22 +02:00
18 lines
272 B
Jsonnet
18 lines
272 B
Jsonnet
std.map(std.escapeStringJson, [
|
|
"",
|
|
"\"quoted string\"",
|
|
"backslash \\",
|
|
"new\nline",
|
|
"tab\tcharacter",
|
|
"controler\r\fcharacters\r\f",
|
|
null,
|
|
"null",
|
|
1.42,
|
|
[1,2,3],
|
|
{a:1,b:2,c:3},
|
|
true,
|
|
false,
|
|
"true",
|
|
"false",
|
|
])
|