is the output from: ``` console.log(req.query) con...
# javascript
s
is the output from:
Copy code
console.log(req.query)
console.log(req.query.get("test"))
I should clarify that this block of code is Kotlin and is being called in a lambda being passed as a parameter to a JsModule external class:
Copy code
externalClass.method(arg) { req -> 
    ...
}