This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * - Accepts string or number | |
| * - For numbers: negative numbers are not palindromes | |
| * - For all other types: returns false | |
| * - Comparison is exact (case-sensitive, spaces/punctuation are treated as characters) | |
| * | |
| * @param {unknown} input | |
| * @returns {boolean} | |
| */ |