summaryrefslogtreecommitdiffstats
path: root/bin/isolated-functions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/isolated-functions.sh')
-rw-r--r--bin/isolated-functions.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index 24443ac1b..a4bd0a95c 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -511,19 +511,19 @@ if [[ -z ${XARGS} ]] ; then
esac
fi
-has() {
- hasq "$@"
+hasq() {
+ has "$@"
}
hasv() {
- if hasq "$@" ; then
+ if has "$@" ; then
echo "$1"
return 0
fi
return 1
}
-hasq() {
+has() {
[[ " ${*:2} " == *" $1 "* ]]
}