Skip to content

Instantly share code, notes, and snippets.

@haru01
Last active April 4, 2019 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haru01/0067f8864caaed66c34d970737d02254 to your computer and use it in GitHub Desktop.
Save haru01/0067f8864caaed66c34d970737d02254 to your computer and use it in GitHub Desktop.
@@ -1,6 +1,6 @@
function generateReadReport(readList, recommendList) {
const reportData = createReportData(readList, recommendList);
- return renderPlainText(reportData, recommendList);
+ return renderPlainText(reportData);
}
function createReportData(readList, recommendList) {
@@ -42,7 +42,7 @@ function createReportData(readList, recommendList) {
}
}
-function renderPlainText(reportData, recommendList) {
+function renderPlainText(reportData) {
let report = `name: ${reportData.userName}\n`;
report += '-----\n';
for (let book of reportData.readBooks) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment