This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Description
I tend to have a lot of code that looks like this:
const q = request.swagger.params.q.value;
const foo = request.swagger.params.foo.value;
const bar = request.swagger.params.bar.value;
Is there a way to get multiple param values at once, such that I could do:
const { q, foo, bar } = request.swagger.pluck('q', 'foo', 'bar');