V v minor readability/stylistic thing - but might be worth having more descriptive variable names in the below section: you have body and bod referring to the body in JSON format and parsed format. Maybe jsonBod and parsedBod ?
|
const bod = JSON.parse(body); |
V v minor readability/stylistic thing - but might be worth having more descriptive variable names in the below section: you have
bodyandbodreferring to the body in JSON format and parsed format. MaybejsonBodandparsedBod?jeth/src/handlers.js
Line 47 in 55aa475