UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

11 lines (10 loc) 262 B
export function evaluateUnary(operator, operand) { switch (operator) { case "-": return -operand; case "+": return +operand; default: throw new Error(`Unknown unary operator: ${operator}`); } }