diff --git a/src/utils.ts b/src/utils.ts index e997e08..961aa6b 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,6 +1,7 @@ import { CreateMessage, Interaction, log, LT, Message } from '../deps.ts'; import { UrlIds } from './types/commandTypes.ts'; +// deno-lint-ignore no-explicit-any const jsonStringifyBig = (input: any) => { return JSON.stringify(input, (_key, value) => typeof value === 'bigint' ? value.toString() + 'n' : value); };