diff --git a/src/index.ts b/src/index.ts index 59ce798c..4f7fc939 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,12 +16,12 @@ import mongoose from "mongoose"; // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any (BigInt.prototype as any).toJSON = function (): string { // eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access - return "" + this.toString() + ""; + return "" + this.toString() + ""; }; const og_stringify = JSON.stringify; // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access (JSON as any).stringify = (obj: any): string => { - return og_stringify(obj).split(`"`).join(``).split(`"`).join(``); + return og_stringify(obj).split(`"`).join(``).split(`"`).join(``); }; }