21 lines
No EOL
577 B
TypeScript
21 lines
No EOL
577 B
TypeScript
/**
|
|
* Capitalises first letter of string.
|
|
* @param str
|
|
*/
|
|
export function capitalizeFirstLetter(str: string) {
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
}
|
|
|
|
/**
|
|
* Fetches with applied bearer token.
|
|
* @param endpoint ex.: /users/me
|
|
* @param jwt Java Web Token used to authorize
|
|
* @param baseUrl Base Url of request
|
|
*/
|
|
export async function bearerFetch(endpoint: string, jwt: string, baseUrl: string = "http://localhost:1337/api") {
|
|
return await fetch(baseUrl + endpoint, {
|
|
headers: {
|
|
Authorization: `Bearer ${jwt}`
|
|
}
|
|
});
|
|
} |