jquery-ui/tests/runner/browserstack/createAuthHeader.js

8 lines
269 B
JavaScript
Raw Permalink Normal View History

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 }`;
}