Client for DBC webservice BorrCheck
npm install dbc-node-borchk

Node borrow check wrapper module for the DBC webservice https://borchk.addi.dk/.
BORCHK is a web service used by systems and interfaces for lookup in library borrower records, to verify whether a user is enrolled, and whether he is a citizen of the municipality.
This method returns a borrow check result from the webservice containing simple response which can be "ok" or "borrower_not_found".
Example:
``javascript
params = {
userId: '',
userPincode: ''
};
Borchk.getBorrowerCheckResult(params);
``