Module: bibSearchKW

(require("bibSearchKW"))(search, kw, page, per) → {promise}

A simplified search interface accepting a Type:Value pair
Parameters:
Name Type Description
search string The search term
kw string KW|TI|AU|SU|NOTE|PUB|GENRE|SE|ISBN|ISSN|LCCN|PN|LC|DD|LOCAL|SUDOC|CODEN|STRN|CN|BC
page int | string the search result page to return
per int | string number of results per page
Source:
Returns:
Type
promise
Example
myPapi.bibSearchKW('dogs', 'KW')
     .then(function(response) {
         console.log(response.data);
     });