Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 2, 2020
1 parent 164b93a commit 48b58d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/fake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ const fakeFunctions = {
date: {
args: ['dateFormat', 'dateFrom', 'dateTo'],
func: (dateFormat, dateFrom, dateTo) =>
moment(faker.date.between(dateFrom, dateTo)).format(dateFormat).toString(),
moment(faker.date.between(dateFrom, dateTo))
.format(dateFormat)
.toString(),
},
pastDate: {
args: ['dateFormat'],
Expand Down

0 comments on commit 48b58d5

Please sign in to comment.