More actions
Case-insensitive conversion of 'truthy' and 'falsey' input to '1' or '0'.
No input -> 'none'
All other input -> 'undefined'
input-output table:
input | output |
---|---|
{{Bool|}} | none |
{{Bool|1}} | 1 |
{{Bool|0}} | 0 |
{{Bool|yes}} | 1 |
{{Bool|no}} | 0 |
{{Bool|true}} | 1 |
{{Bool|false}} | 0 |
{{Bool|y}} | 1 |
{{Bool|n}} | 0 |
{{Bool|t}} | 1 |
{{Bool|f}} | 0 |
{{Bool|Yes}} | 1 |
{{Bool|YES}} | 1 |
{{Bool|No}} | 0 |
{{Bool|NO}} | 0 |
{{Bool|True}} | 1 |
{{Bool|TRUE}} | 1 |
{{Bool|False}} | 0 |
{{Bool|FALSE}} | 0 |
{{Bool| yes}} | 1 |
{{Bool|yes }} | 1 |
{{Bool| yes }} | 1 |
{{Bool|other}} | UNDEFINED |