Skip to content

Commit

Permalink
Escaped names
Browse files Browse the repository at this point in the history
  • Loading branch information
justin0022 committed Apr 29, 2021
1 parent d232aff commit 7fe7c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions writeToCSV.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ const writeToCSV = (data, filename) => {

data.forEach(studentData => {
const row = [
studentData.studentName,
escapeComment(studentData.studentName),
studentData.studentNumber,
studentData.section,
studentData.taName,
escapeComment(studentData.taName),
studentData.taStudentNumber,
studentData.totalGrade,
studentData.url
Expand Down

0 comments on commit 7fe7c1d

Please sign in to comment.