Use middleware to verify secret key (#4338)
This commit is contained in:
@@ -10,9 +10,4 @@ export function snakeToTitleCase(snake: string): string {
|
||||
.split('_')
|
||||
.map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase())
|
||||
.join(' ');
|
||||
}
|
||||
|
||||
export function patchConsoleLogging() {
|
||||
// Intercept console methods
|
||||
return;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user