mirror of
https://github.com/idanoo/m2.nz
synced 2025-07-23 13:19:11 +00:00
18 lines
384 B
HTML
18 lines
384 B
HTML
{{- /* To Bool */ -}}
|
|
{{- $bool := . -}}
|
|
|
|
{{- if eq . true -}}
|
|
{{- $bool = true -}}
|
|
{{- else if eq . false -}}
|
|
{{- $bool = false -}}
|
|
{{- else if eq . "true" -}}
|
|
{{- $bool = true -}}
|
|
{{- else if eq . "false" -}}
|
|
{{- $bool = false -}}
|
|
{{- else if eq . "1" -}}
|
|
{{- $bool = true -}}
|
|
{{- else if eq . "0" -}}
|
|
{{- $bool = false -}}
|
|
{{- end -}}
|
|
|
|
{{- return $bool -}}
|