Perl 6Perl 6, 25 bytes
{[le] .comb or[ge] .comb} How it works:
.combsplits the input into a sequence of characters.leandgeare the "less or equal" and "greater or equal" string comparison operators.[ ]around an infix operator, reduces ("folds") the argument list with that operator. (It's smart enough to return True if the input has only zero or one characters.)orreturns True if the expressions on either side of it is true.