Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuatz committed Nov 27, 2022
1 parent 4110e16 commit e67ecd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function zeroLeftPad(n) {
* @param {boolean} isStart
* @returns {number} month
*/
function getDefaultMonth(isStart) {
function getDefaultMonth(isStart) {
return isStart ? 1 : 12;
}

Expand Down Expand Up @@ -69,7 +69,7 @@ function parseDate(dateObj, isStart) {
* Parses an object with year, month and day and returns a string with the date.
* - If month is not present, should return 1.
* - If day is not present, should return 1.
*
*
* @param {LiDate} dateObj
* @returns {string} Date, as string, formatted for JSONResume
*/
Expand All @@ -81,7 +81,7 @@ export function parseStartDate(dateObj) {
* Parses an object with year, month and day and returns a string with the date.
* - If month is not present, should return 12.
* - If day is not present, should return last month day.
*
*
* @param {LiDate} dateObj
* @returns {string} Date, as string, formatted for JSONResume
*/
Expand Down

0 comments on commit e67ecd8

Please sign in to comment.