Skip to content

Commit 48b58d5

Browse files
committed
Fix prettier
1 parent 164b93a commit 48b58d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/fake.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ const fakeFunctions = {
7979
date: {
8080
args: ['dateFormat', 'dateFrom', 'dateTo'],
8181
func: (dateFormat, dateFrom, dateTo) =>
82-
moment(faker.date.between(dateFrom, dateTo)).format(dateFormat).toString(),
82+
moment(faker.date.between(dateFrom, dateTo))
83+
.format(dateFormat)
84+
.toString(),
8385
},
8486
pastDate: {
8587
args: ['dateFormat'],

0 commit comments

Comments
 (0)