@sequeljs/ast
Version:
A SQL AST manager for JavaScript
19 lines • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Bind {
constructor() {
this.strBinds = [];
}
get value() {
return this.strBinds;
}
addBind(bind, _) {
this.strBinds.push(bind);
return this;
}
append(_) {
return this;
}
}
exports.default = Bind;
//# sourceMappingURL=Bind.js.map