mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-01-24 08:36:32 +08:00
11 lines
165 B
Fish
11 lines
165 B
Fish
|
function assert.expand_operator -a operator
|
||
|
switch $operator
|
||
|
case =
|
||
|
echo equals
|
||
|
case \-z
|
||
|
echo empty
|
||
|
case \*
|
||
|
echo $operator
|
||
|
end
|
||
|
end
|