mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 05:26:07 +00:00
15 lines
795 B
TypeScript
15 lines
795 B
TypeScript
/** Removes the Bot before the token. */
|
|
export function removeTokenPrefix(token?: string, type: 'GATEWAY' | 'REST' = 'REST'): string {
|
|
// If no token is provided, throw an error
|
|
if (!token) throw new Error(`The ${type} was not given a token. Please provide a token and try again.`);
|
|
// If the token does not have a prefix just return token
|
|
if (!token.startsWith('Bot ')) return token;
|
|
// Remove the prefix and return only the token.
|
|
return token.substring(token.indexOf(' ') + 1);
|
|
}
|
|
|
|
/** Get the bot id from the bot token. WARNING: Discord staff has mentioned this may not be stable forever. Use at your own risk. However, note for over 5 years this has never broken. */
|
|
export function getBotIdFromToken(token: string) {
|
|
return BigInt(atob(token.split('.')[0]));
|
|
}
|