UNPKG

color-math

Version:
14 lines (10 loc) 253 B
import Expr from './Expr' export default class ColorByNumberExpr extends Expr { constructor(value, $loc) { super('colorByNumber', $loc) this.value = value } _evaluateInternal(e) { return e.evalColorByNumber(this) } }