From 05ac1a79dd7ab54c6edcc8d8f43047b0a522bba9 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Tue, 21 May 2024 03:07:07 -0400 Subject: [PATCH] add deno lint comment for universal util function --- src/utils.ts | 1 + 1 file changed, 1 insertion(+) 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); };