dijs / wiki

Wikipedia Interface for Node.js
MIT License
313 stars 62 forks source link

Feature request: pls provide search method to also pass the query #48

Closed dNitro closed 7 years ago

dNitro commented 7 years ago

While using search method there could also be need for access to provided search query but this method only gives access to list of page titles (and a next() function if one limits the results). Could you please refine the search method so it also gives access to searched query?!

so it returns: { query: 'searched query', results: [ list of page titles ], next: [function] }

instead of: { results: [ list of page titles ], next: [function] }

dijs commented 7 years ago

In v3.1.0

dNitro commented 7 years ago

Many Thanks.