UNPKG

color-math

Version:

expressions to manipulate colors

12 lines (9 loc) 197 B
import {Expr} from './Expr.js'; export class CubehelixExpr extends Expr { constructor($loc) { super('cubehelix', $loc); } _evaluateInternal(e) { return e.evalCubehelix(this); } }