mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
|
const textEncoder = new TextEncoder();
|
||
|
|
||
|
export function createAuthHeader( username, accessKey ) {
|
||
|
const encoded = textEncoder.encode( `${ username }:${ accessKey }` );
|
||
|
const base64 = btoa( String.fromCodePoint.apply( null, encoded ) );
|
||
|
return `Basic ${ base64 }`;
|
||
|
}
|