/** * @function Palindrome * @description Check whether the given string is Palindrome or not. * @param {String} str - The input string * @return {Boolean}. */ const palindrome = (str) => { if (typeof str !== 'string')
京公网安备 11010502049817号