UNPKG

common-data-structure

Version:
13 lines (12 loc) 184 B
/** * 键值对 */ export class ValuePair { constructor(key, value) { this.key = key this.value = value } toString() { return `[#${this.key}: ${this.value}]` } }