Skip to content

Commit

Permalink
fix(utilities): export addTokenPrefix method
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoPedroAS51 authored and pi0 committed Mar 15, 2020
1 parent 9aa623a commit 5ef957b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@ export function getProp (holder, propName) {
}

// Ie "Bearer " + token
function addTokenPrefix (token, tokenType) { // eslint-disable-line no-unused-vars
export function addTokenPrefix (token, tokenType) {
return tokenType ? tokenType + ' ' + token : token
}

0 comments on commit 5ef957b

Please sign in to comment.