UNPKG

tabel

Version:

A simple orm for PostgreSQL which works with simple javascript objects and arrays

15 lines (12 loc) 227 B
class Scope { constructor(closure, label, isJoint=false) { this.closure = closure; this.label = label; this.isJoint = !!isJoint; } apply(q) { this.closure(q); return q; } } module.exports = Scope;