node-querybuilder
node-querybuilder copied to clipboard
Add overload to select(...)
Select supports these 2 syntax:
qb.select('s.id, s.title, s.artist, s.genre')
and
qb.select(['s.id', 's.title', 's.artist', 's.genre'])
but I constantly find myself doing this:
qb.select('s.id', 's.title', 's.artist', 's.genre')
Can we also allow the vararg approach?
I could add this option but it won't be for the official v2.0.0 release. I'll add it for v2.1.