add deno lint comment for universal util function
This commit is contained in:
parent
5ccccae1f4
commit
05ac1a79dd
|
@ -1,6 +1,7 @@
|
||||||
import { CreateMessage, Interaction, log, LT, Message } from '../deps.ts';
|
import { CreateMessage, Interaction, log, LT, Message } from '../deps.ts';
|
||||||
import { UrlIds } from './types/commandTypes.ts';
|
import { UrlIds } from './types/commandTypes.ts';
|
||||||
|
|
||||||
|
// deno-lint-ignore no-explicit-any
|
||||||
const jsonStringifyBig = (input: any) => {
|
const jsonStringifyBig = (input: any) => {
|
||||||
return JSON.stringify(input, (_key, value) => typeof value === 'bigint' ? value.toString() + 'n' : value);
|
return JSON.stringify(input, (_key, value) => typeof value === 'bigint' ? value.toString() + 'n' : value);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue