UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

16 lines 297 B
export default class Bind { constructor() { this.strBinds = []; } get value() { return this.strBinds; } addBind(bind, _) { this.strBinds.push(bind); return this; } append(_) { return this; } } //# sourceMappingURL=Bind.js.map