palindrome-string
v1.0.0
Published
A simple Node.js utility to check if a string is a palindrome.
Readme
palindrome-string
A simple Node.js utility to check if a string is a palindrome.
Installation
npm install palindrome-string
const isPalindrome = require('palindrome-string');
console.log(isPalindrome('Racecar')); // true
console.log(isPalindrome('Hello')); // false