UNPKG

color-math

Version:
12 lines (9 loc) 214 B
import Expr from './Expr' export default class RandomColorExpr extends Expr { constructor($loc) { super('randomColor', $loc) } _evaluateInternal(e) { return e.evalRandomColor(this) } }