SIGN IN SIGN UP

JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed. 🚀. Built with 💜 by the Trigger.dev team.

0 0 0 TypeScript
2022-03-01 09:31:09 +00:00
export async function sendEvent(event: Record<string, any>): Promise<void> {
return;
2022-03-01 09:31:09 +00:00
}
function graphJsonReplacer(key: string, value: any): any {
if (key === "api_key") {
return undefined;
}
return value;
}