1
1
mirror of https://github.com/Burn-E99/GroupUp.git synced 2026-01-07 11:57:54 -05:00

add deno lint comment for universal util function

This commit is contained in:
Ean Milligan
2024-05-21 03:07:07 -04:00
parent 5ccccae1f4
commit 05ac1a79dd

View File

@ -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);
};