UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

14 lines 308 B
import Binary from './Binary'; export default class Equality extends Binary { constructor() { super(...arguments); this.operator = '=='; } get operand1() { return this.left; } get operand2() { return this.right; } } //# sourceMappingURL=Equality.js.map