UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

8 lines 236 B
import As from '../nodes/As'; import SQLLiteral from '../nodes/SQLLiteral'; export default class AliasPredication { as(other) { return new As(this, new SQLLiteral(other)); } } //# sourceMappingURL=AliasPredication.js.map