UNPKG

@akala/core

Version:
10 lines (8 loc) 197 B
/** Enum representing valid unary operators. */ export enum UnaryOperator { /** Logical NOT operator (!) */ Not, /** Double NOT operator ( !! ) used for type coercion */ NotNot, }