Write a function that determines whether or not a given string is a palindrome.
A palindrome is a string that is spelled the same both forwards and backwards, usually without considering punctuation or word breaks:
palindromes('racecar') // true
palindromes('tacos') // false