UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

24 lines (23 loc) 427 B
// src/sql/Join.ts var Join = class { constructor(first, second, c, c2) { this.first = first; this.second = second; this.c = c; this.c2 = c2; this.db = this.first.db; } db; on(c, c2) { this.c = c; this.c2 = c2; return this; } toString() { return `${this.first} JOIN ${this.second} ON ${this.c} = ${this.c2}`; } }; export { Join }; //# sourceMappingURL=chunk-OQNZEKWO.mjs.map