easy_check_palindrome
v1.0.5
Published
check your input(number or string) is palindrome or not
Downloads
3
Readme
Toy function Library
A library that provides some toy function to use, for example: check palindrome.
Installation
npm i easy_check_palindrome
const isPalindrome = require('easy_check_palindrome')
console.log(isPalindrome(-1221)) // Output: false
console.log(isPalindrome(1221)) // Output: true
console.log(isPalindrome("williw")) // Output: true