UNPKG

@websanova/vue-auth

Version:

A simple light-weight authentication library for Vue.js

23 lines (19 loc) 473 B
/*! * @websanova/vue-auth v4.2.1 * https://websanova.com/docs/vue-auth * Released under the MIT License. */ 'use strict'; var basic = { request: function (req, token) { this.drivers.http.setHeaders.call(this, req, { Authorization: token }); }, response: function (res) { var headers = this.drivers.http.getHeaders.call(this, res), token = headers.Authorization || headers.authorization; return token; } }; module.exports = basic;