Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fiqryq/palindrome-test
simple npm package for check palindrome word
https://github.com/fiqryq/palindrome-test
npm package palindrome-checker
Last synced: 3 months ago
JSON representation
simple npm package for check palindrome word
- Host: GitHub
- URL: https://github.com/fiqryq/palindrome-test
- Owner: fiqryq
- Created: 2021-10-20T10:11:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-20T12:49:17.000Z (about 3 years ago)
- Last Synced: 2024-09-04T21:41:31.922Z (4 months ago)
- Topics: npm, package, palindrome-checker
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/palindrome-test
- Size: 3.91 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simple Palindrome Test
Installation
```
npm i palindrome-test
```Usage
```js
const palindrome = require("palindrome-test");
const result = palindrome("bob");
console.log(result);
// true
```