type Github = {
token: string;
};
/**
* Get emojis
* Lists all the emojis available to use on GitHub.
*/
export async function main(auth: Github) {
const url = new URL(`https://api.github.com/emojis`);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 407 days ago