0.1.2 • Published 5 years ago

leenacha-palindrome v0.1.2

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Phrase object (with palindrome detector)

This is a sample NPM module created in Learn Enough™️ JavaScript to Be Dangerous by Michael Hartl.

The module can be used as follows:

$ vim test.js
let Phrase = require("leenacha-palindrome");
let justsayin = new Phrase("The 2020 Saturn-Pluto conjunction in Capricorn starts now.");
console.log(justsayin.palindrome());
$ node test.js
true```