UNPKG

color-math

Version:

expressions to manipulate colors

11 lines (8 loc) 227 B
import {Expr} from './Expr.js'; export class OperationExpr extends Expr { constructor($type, operator, options, $loc) { super(`operation.${$type}`, $loc); this.operator = operator; this.options = options; } }