-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.js
53 lines (42 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
(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("mhartl-palindrome");
function palindromeTester(event) {
event.preventDefault();
let phrase = new Phrase(event.target.phrase.value);
let palindromeResult = document.querySelector("#palindromeResult");
if (phrase.palindrome()) {
palindromeResult.innerHTML = `"<strong>${phrase.content}</strong>" is a palindrome!`;
} else {
palindromeResult.innerHTML = `"<strong>${phrase.content}</strong>" is not a palindrome.`;
}
}
document.addEventListener("DOMContentLoaded", function() {
let button = document.querySelector("#palindromeTester");
button.addEventListener("submit", function(event) {
palindromeTester(event);
});
});
},{"mhartl-palindrome":2}],2:[function(require,module,exports){
module.exports = Phrase;
// Adds `reverse` to all strings.
String.prototype.reverse = function() {
return Array.from(this).reverse().join("");
}
function Phrase(content) {
this.content = content;
// Return content processed for palindrome testing.
this.processedContent = function processedContent() {
return this.letters().toLowerCase();
}
// Returns the letters in the content.
// For example:
// new Phrase("Hello, world!").letters() === "Helloworld"
this.letters = function letters() {
return Array.from(this.content).filter(c => c.match(/[a-z]/i)).join("");
}
// Returns true if the phrase is a palindrome, false otherwise.
this.palindrome = function palindrome() {
return this.processedContent() === this.processedContent().reverse();
}
}
},{}]},{},[1]);