mirror of https://github.com/gobeam/stringy.git
Properly test for boolean "true"
"true" was treated as an invalid boolean. All strings in the slice of valid boolean values need to be lowercase, since the input is lowercased before comparison.
This commit is contained in:
parent
7befa36001
commit
0bfb740fcd
|
@ -18,4 +18,4 @@ const (
|
|||
var False = []string{"off", "no", "0", "false"}
|
||||
|
||||
// True is slice of array for true logical representation in string
|
||||
var True = []string{"on", "yes", "1", "True"}
|
||||
var True = []string{"on", "yes", "1", "true"}
|
||||
|
|
Loading…
Reference in New Issue