brugs / palindrome

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Phrase object (with palindrome detector)

This is a sample NPM module created in Learn Enough JavaScript to Be Dangerous by Michael Hartl, module created by Bruno Santos.

The module can be used as follows:

$ npm install --global brugs-palindrome
$ vim test.js
let Phrase = require("brugs-palindrome");
let napoleonsLament = new Phrase("Able was I, ere I saw Elba.");
console.log(napoleonsLament.palindrome());
$ node test.js
true

About


Languages

Language:JavaScript 100.0%