-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle.js
42 lines (33 loc) · 1.65 KB
/
bundle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
let Phrase = require("mrdotballard-palindrome");
let string = prompt("Please enter a string for palindrome testing:");
let phrase = new Phrase(string);
if (phrase.palindrome()) {
alert(`"${phrase.content}" is a palindrome!`);
} else {
alert(`"${phrase.content}" is not a palindrome.`);
}
},{"mrdotballard-palindrome":2}],2:[function(require,module,exports){
module.exports = Phrase;
// Adds Reverse to all strings.
String.prototype.reverse = function reverse() {
return Array.from(this).reverse().join("");
}
// Defines a Phrase object.
function Phrase(content) {
this.content = content;
// Returns content processed for palindrome testing
this.processedContent = function processedContent() {
return this.letters().toLowerCase();
}
this.letters = function letters() {
const lettersRegEx = /[a-z]/gi;
return Array.from(this.content).filter(c => c.match(lettersRegEx)).join("");
// return (this.content.match(/[a-z]/gi) || []).join("");
}
// Returns true if the phrase is a palindrome, false otherwise.
this.palindrome = function palindrome() {
return this.processedContent() === this.processedContent().reverse();
}
}
},{}]},{},[1]);