mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
12 lines
384 B
JavaScript
12 lines
384 B
JavaScript
// @flow
|
|
|
|
import type { RequestHeader } from '../../models/request';
|
|
|
|
export function getBasicAuthHeader(username: ?string, password: ?string): RequestHeader {
|
|
const name = 'Authorization';
|
|
const header = `${username || ''}:${password || ''}`;
|
|
const authString = Buffer.from(header, 'utf8').toString('base64');
|
|
const value = `Basic ${authString}`;
|
|
return { name, value };
|
|
}
|