We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c4fc9 commit 33a7ec0Copy full SHA for 33a7ec0
CHANGELOG.md
@@ -0,0 +1 @@
1
+- Add @deprecated annotation to callable functions's auth policy.
spec/helper.ts
@@ -78,9 +78,7 @@ export function runHandler(
78
79
const toSend = typeof sendBody === "object" ? JSON.stringify(sendBody) : sendBody;
80
const body =
81
- typeof this.sentBody === "undefined"
82
- ? toSend
83
- : this.sentBody + String(toSend || "");
+ typeof this.sentBody === "undefined" ? toSend : this.sentBody + String(toSend || "");
84
this.end(body);
85
}
86
0 commit comments