UNPKG

droplr-api

Version:

Official Droplr API Client for Javascript

16 lines (13 loc) 267 B
class BasicAuth { constructor(username, password) { this.username = username; this.password = password; } authorize(request) { request.auth = { username: this.username, password: this.password, }; } } module.exports = BasicAuth;