UNPKG

@clickup/ent-framework

Version:

A PostgreSQL graph-database-alike library with microsharding and row-level security

9 lines (8 loc) 229 B
/** * Optionally encloses a PG identifier (like table name) in "". */ export function escapeIdent(ident: string): string { return ident.match(/^[a-z_][a-z_0-9]*$/is) ? ident : '"' + ident.replace(/"/g, '""') + '"'; }