Randy stiven Valentin
Results
2
comments of
Randy stiven Valentin
Hello everyone! I encountered the same problem, and I'm still not sure if this is the best solution. However, this is what worked for me using Bun with SandboxedJob, after...
You can overwrite the request object so that query returns a custom value. This was my solution: ``` Object.defineProperty(req, "query", { get() { return parse(this.path_query, options); }, }); ``` Also,...