This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const BASE_URL = 'https://memealerts.com/api'; | |
| class MemeAlertsClient { | |
| /** | |
| * @param {string} token - Bearer JWT токен | |
| */ | |
| constructor(token) { | |
| if (!token) { | |
| throw new Error('Token is required'); | |
| } |