@sequeljs/ast
Version:
A SQL AST manager for JavaScript
10 lines • 355 B
JavaScript
import Binary from './Binary';
import buildQuoted from './buildQuoted';
export default class Matches extends Binary {
constructor(left, right, escape = null, caseSensitive = false) {
super(left, right);
this.caseSensitive = caseSensitive;
this.escape = escape && buildQuoted(escape);
}
}
//# sourceMappingURL=Matches.js.map