UNPKG

@clickup/pg-mig

Version:

PostgreSQL schema migration tool with microsharding and clustering support

8 lines (7 loc) 189 B
export function removeSqlComments(content: string): string { return content .replace(/--[^\n]*/gm, "") .replace(/\/\*.*?\*\//gs, "") .replace(/^(\s*;)+/gs, "") .trim(); }