shaoyongjun ab00b85c8f to:sync
2024-10-31 01:32:52 +08:00

16 lines
254 B
JavaScript

"use strict";
export class MyKV {
constructor(k, v) {
this.k = k
this.v = v
this.getK = function getK() {
return this.k
}
this.getV = function getV() {
return this.v
}
}
}