2020-01-07 17:36:49 +01:00
|
|
|
package txt
|
2019-05-16 08:41:16 +02:00
|
|
|
|
|
|
|
import (
|
2019-06-13 20:26:01 +02:00
|
|
|
"strings"
|
2019-05-16 08:41:16 +02:00
|
|
|
)
|
|
|
|
|
2020-01-31 15:29:06 +01:00
|
|
|
// Bool casts a string to bool.
|
|
|
|
func Bool(s string) bool {
|
|
|
|
s = strings.TrimSpace(s)
|
|
|
|
|
2021-05-26 09:51:00 +02:00
|
|
|
if s == "" || No(s) {
|
2020-01-31 15:29:06 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2021-05-26 09:51:00 +02:00
|
|
|
|
|
|
|
// Yes returns true if a string represents "yes".
|
|
|
|
func Yes(s string) bool {
|
2021-09-29 20:09:34 +02:00
|
|
|
if s == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-05-26 09:51:00 +02:00
|
|
|
s = strings.ToLower(strings.TrimSpace(s))
|
|
|
|
|
2021-09-23 14:23:00 +02:00
|
|
|
return strings.IndexAny(s, "ytjposiд") == 0
|
2021-05-26 09:51:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// No returns true if a string represents "no".
|
|
|
|
func No(s string) bool {
|
2021-09-29 20:09:34 +02:00
|
|
|
if s == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-05-26 09:51:00 +02:00
|
|
|
s = strings.ToLower(strings.TrimSpace(s))
|
|
|
|
|
2021-09-23 14:23:00 +02:00
|
|
|
return strings.IndexAny(s, "0nhufeн") == 0
|
2021-05-26 09:51:00 +02:00
|
|
|
}
|
2021-09-29 20:09:34 +02:00
|
|
|
|
|
|
|
// New returns true if a string represents "new".
|
|
|
|
func New(s string) bool {
|
|
|
|
if s == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
s = strings.ToLower(strings.TrimSpace(s))
|
|
|
|
|
2021-10-13 16:12:56 +02:00
|
|
|
return s == EnNew
|
2021-09-29 20:09:34 +02:00
|
|
|
}
|