UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

8 lines (6 loc) 164 B
import UnaryOperation from './UnaryOperation' export default class BitwiseNot extends UnaryOperation { constructor(operand: any) { super('~', operand) } }