mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { isDebug } from "../env";
|
|
|
|
export async function formatSql(sql: string): Promise<string> {
|
|
if (isDebug()) {
|
|
const { format } = await import("sql-formatter");
|
|
return format(sql);
|
|
}
|
|
return "";
|
|
}
|