We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a156f58 commit 0f70bf1Copy full SHA for 0f70bf1
blog/25-07-24/http-server/ex/login-server.js
@@ -40,7 +40,7 @@
40
async function post(req){
41
42
var body = '';
43
- for(await data of req)body+=data;
+ for await(data of req)body+=data;
44
var json = JSON.parse(body);
45
return json;
46
0 commit comments