diff options
author | 2023-03-24 15:32:44 +0000 | |
---|---|---|
committer | 2023-03-24 15:32:44 +0000 | |
commit | 8a721173b3044f978173d97d608891f792dd2d71 (patch) | |
tree | 08620f5b5bccb2ea3dea8fffdf7949491e6c5640 | |
parent | b7194103e39267bf59dcd6ba00f522e424219d16 (diff) | |
download | astro-8a721173b3044f978173d97d608891f792dd2d71.tar.gz astro-8a721173b3044f978173d97d608891f792dd2d71.tar.zst astro-8a721173b3044f978173d97d608891f792dd2d71.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/app/node.ts | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/packages/astro/src/core/app/node.ts b/packages/astro/src/core/app/node.ts index 8561c459c..9204ed78e 100644 --- a/packages/astro/src/core/app/node.ts +++ b/packages/astro/src/core/app/node.ts @@ -31,7 +31,7 @@ function createRequestFromNodeRequest(req: NodeIncomingMessage, body?: Uint8Arra class NodeIncomingMessage extends IncomingMessage { /** - * The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. + * The read-only body property of the Request interface contains a ReadableStream with the body contents that have been added to the request. */ body?: any | undefined; } @@ -41,19 +41,21 @@ export class NodeApp extends App { return super.match(req instanceof Request ? req : createRequestFromNodeRequest(req), opts); } render(req: NodeIncomingMessage | Request, routeData?: RouteData) { - if (typeof (req.body) === 'string' && req.body.length > 0) { - return super.render( + if (typeof req.body === 'string' && req.body.length > 0) { + return super.render( req instanceof Request ? req : createRequestFromNodeRequest(req, Buffer.from(req.body)), - routeData - ); - } - - if ((typeof (req.body) === 'object') && (Object.keys(req.body).length > 0)) { - return super.render( - req instanceof Request ? req : createRequestFromNodeRequest(req, Buffer.from(JSON.stringify(req.body))), - routeData - ); - } + routeData + ); + } + + if (typeof req.body === 'object' && Object.keys(req.body).length > 0) { + return super.render( + req instanceof Request + ? req + : createRequestFromNodeRequest(req, Buffer.from(JSON.stringify(req.body))), + routeData + ); + } if ('on' in req) { let body = Buffer.from([]); @@ -93,4 +95,4 @@ export async function loadManifest(rootFolder: URL): Promise<SSRManifest> { export async function loadApp(rootFolder: URL): Promise<NodeApp> { const manifest = await loadManifest(rootFolder); return new NodeApp(manifest); -}
\ No newline at end of file +} |