Skip to content

Commit

Permalink
chore: remove extra semicolon to fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dziraf authored May 16, 2022
1 parent 7f693aa commit 733bf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Resource extends BaseResource {
}

async count(filters = null) {
return this.MongooseModel.find(convertFilter(filters)).estimatedDocumentCount();
return this.MongooseModel.find(convertFilter(filters)).estimatedDocumentCount()
}

async find(filters = {}, { limit = 20, offset = 0, sort = {} }: FindOptions) {
Expand Down

0 comments on commit 733bf75

Please sign in to comment.