forked from mirror/pixelfed
possible fix is-false/true logic
This commit is contained in:
parent
90c9d8b5a6
commit
e70e13e265
|
@ -491,6 +491,8 @@ function show-call-stack() {
|
|||
# @see as-boolean
|
||||
function is-true() {
|
||||
as-boolean "${1:-}" && return 0
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
# @description Helper function see if $1 could be considered falsey
|
||||
|
@ -498,6 +500,8 @@ function is-true() {
|
|||
# @see as-boolean
|
||||
function is-false() {
|
||||
as-boolean "${1:-}" || return 0
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
# @description Helper function see if $1 could be truethy or falsey.
|
||||
|
|
Loading…
Reference in New Issue