@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
16 lines • 354 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.True = void 0;
/**
* Always passes; used for e.g. globally accessed objects.
*/
class True {
constructor() {
this.name = this.constructor.name;
}
async check(_vc) {
return true;
}
}
exports.True = True;
//# sourceMappingURL=True.js.map
;