Skip to content

Commit 9b87ddb

Browse files
authored
Fix trailing space. (#94)
1 parent 3c36cb9 commit 9b87ddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloud-functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export interface MakeCloudFunctionArgs<EventData> {
7373
after?: (raw: Event<any>) => void;
7474
}
7575

76-
function _makeParams(event: Event<any>, triggerResource: string): { [option: string]: any } {
76+
function _makeParams(event: Event<any>, triggerResource: string): { [option: string]: any } {
7777
if (!event.resource) { // In unit testing, "resource" may not be populated for a test event.
7878
return event.params || {};
7979
}

0 commit comments

Comments
 (0)