UNPKG

sql-formatter

Version:

Format whitespace in a SQL query to make it more readable

6 lines (5 loc) 228 B
import { CommaPosition } from '../types'; /** * Handles comma placement - either before, after or tabulated */ export default function formatCommaPositions(query: string, commaPosition: CommaPosition, indent: string): string;