Skip to content

Commit 4d418b5

Browse files
committed
Remove wrong paranthese
1 parent a80d1d5 commit 4d418b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templates/core/node/getRequestBody.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function getRequestBody(options: ApiRequestOptions): BodyInit | undefined {
33
return getFormData(options.formData) as BodyInit;
44
}
55
if (options.body) {
6-
if (isString(options.body) || isBinary(options.body) || options.body instanceof Stream)) {
6+
if (isString(options.body) || isBinary(options.body) || options.body instanceof Stream) {
77
return options.body as BodyInit;
88
} else {
99
return JSON.stringify(options.body);

0 commit comments

Comments
 (0)