Given a letter, created a function which returns the nearest vowel to the letter. If two vowels are equidistant to the given letter, return the earlier vowel.
nearest_vowel("b") ➞ "a"
nearest_vowel("s") ➞ "u"
nearest_vowel("c") ➞ "a"
nearest_vowel("i") ➞ "i"