UNPKG

color-math

Version:
14 lines (10 loc) 303 B
import OperationExpr from './OperationExpr' export default class UnaryExpr extends OperationExpr { constructor(value, operator, options, $loc) { super('unary', operator, options, $loc) this.value = value } _evaluateInternal(e) { return e.evalUnaryOperation(this) } }