Checks if the given string is a palindrome.
is.palindrome('foobaraboof'); // true is.palindrome('noon'); // true is.palindrome('foobar'); // false is.palindrome('bar'); // false
The string to check.
Whether the string is a palindrome.
Generated using TypeDoc
Checks if the given string is a palindrome.
is.palindrome('foobaraboof'); // true is.palindrome('noon'); // true is.palindrome('foobar'); // false is.palindrome('bar'); // false