UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

19 lines (15 loc) 246 B
/** * Expose `State`. */ module.exports = State; /** * Initialize a new `State`. */ function State() { this.fill = 'normal'; this.stroke = 'normal'; this.scaleX = 1; this.scaleY = 1; this.translateX = 0; this.translateY = 0; }