UNPKG

color-math

Version:

expressions to manipulate colors

12 lines (10 loc) 177 B
export class LocPos { constructor(ln, col, i) { this.ln = ln; this.col = col; this.i = i; } toString() { return `${this.ln}:${this.col},${this.i}`; } }