UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 291 B
import { OperatorType } from '../../enums.js'; import { CompOperator } from './comp-operator.js'; export class OpIsNot extends CompOperator { constructor(left, right) { super(left, right); this._operatorType = OperatorType.isNot; this._symbol = 'is not'; } }