UNPKG

algorithmpool

Version:
10 lines (9 loc) 186 B
export class ValuePair { constructor(key, value) { this.key = key; this.value = value; } toString() { return `[#${this.key}: ${this.value}]`; } }