go-jsonnet/testdata/string_to_bool.jsonnet
Stanisław Barzowski 78b4794523 Object comprehensions
2017-09-27 18:00:30 -04:00

6 lines
199 B
Jsonnet

local stringToBool(s) =
if s == "true" then true
else if s == "false" then false
else error "invalid boolean: " + std.manifestJson(s);
[stringToBool("false"), stringToBool("true")]