Skip to content

Commit

Permalink
Lint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
luhn committed Jan 9, 2025
1 parent 17206d7 commit 217f877
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/fetch-mock/src/CallHistory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ class CallHistory {
called(filter?: CallHistoryFilter, options?: RouteConfig): boolean {
return Boolean(this.calls(filter, options).length);
}
lastCall(filter?: CallHistoryFilter, options?: RouteConfig): CallLog | undefined {
lastCall(
filter?: CallHistoryFilter,
options?: RouteConfig,
): CallLog | undefined {
return this.calls(filter, options).pop();
}

Expand Down

0 comments on commit 217f877

Please sign in to comment.