forked from pinks/eris
5 lines
187 B
TypeScript
5 lines
187 B
TypeScript
|
export function getAuthHeader(auth: { user: string; password: string } | null) {
|
||
|
if (!auth) return {};
|
||
|
return { "Authorization": `Basic ${btoa(`${auth.user}:${auth.password}`)}` };
|
||
|
}
|