10 const handle_request = (req) => {
20 req.command = "do something";
30 Addr = req.payload.addr;
40 };
60 request_handler = handle_request;
req seems to an internal variable but it's not included by the calling relation of line 60 and it appears no where else in the code. What does = (req) => do?
thanks