Skip to content

Instantly share code, notes, and snippets.

View hokage-shuriken's full-sized avatar

hokage-shuriken

View GitHub Profile
const BASE_URL = 'https://memealerts.com/api';
class MemeAlertsClient {
/**
* @param {string} token - Bearer JWT токен
*/
constructor(token) {
if (!token) {
throw new Error('Token is required');
}