Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 357 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 357 Bytes

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

The module can be used as follows:

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