UNPKG

color-math

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