UNPKG

@akala/core

Version:
10 lines (8 loc) 240 B
/** Enum representing valid ternary operators. */ export enum TernaryOperator { /** The standard conditional (ternary) operator. */ Question = '?:', /** Indicates an unknown or invalid ternary operator. */ Unknown = 'xx' }