UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 262 B
import { OperatorType } from '../../enums.js'; import { OpLike } from './op-like.js'; export class OpILike extends OpLike { constructor() { super(...arguments); this._operatorType = OperatorType.iLike; this._symbol = 'ilike'; } }