UNPKG

@clickup/pg-mig

Version:

PostgreSQL schema migration tool with microsharding and clustering support

11 lines (9 loc) 184 B
export class DefaultMap<K, V> extends Map<K, V> { getOrAdd(k: K, def: V): V { if (!this.has(k)) { this.set(k, def); return def; } return this.get(k)!; } }