Optimize lambdas

This commit is contained in:
Tim Van Baak 2018-11-13 13:04:13 -08:00
parent aeb195e595
commit 7070d460fc
1 changed files with 7 additions and 16 deletions

View File

@ -94,20 +94,11 @@
content += "<p><i>The following articles will be cited:</i></p>\n";
for (var i = 0; i < citationList.length; i++) {
citation = citationList[i][0].toString() + ". " + citationList[i][1];
if (writtenArticles.some(
function (e) {
return (e.title === citationList[i][1]) && (e.author === player);
})) {
if (writtenArticles.some(e => (e.title === citationList[i][1]) && (e.author === player))) {
content += "<p><span style=\"color:#ff0000\">" + citation + " [Written by you!]</span></p>";
} else if (writtenArticles.some(
function (e) {
return (e.title === citationList[i][1]);
})) {
} else if (writtenArticles.some(e => (e.title === citationList[i][1]))) {
content += "<p>" + citation + " [Written]";
} else if (phantomArticles.some(
function (e) {
return (e.title === citationList[i][1]);
})) {
} else if (phantomArticles.some(e => (e.title === citationList[i][1]))) {
content += "<p>" + citation + " [Phantom]";
} else {
content += "<p>" + citation + " [New]";