med-notes/.pnpm-store/v10/files/44/bc48425b1bed5c232b8140c6f433c6f3752eba0682952d7e9d376a35c4847272dcbf3e9870ca908aef5439f064bc23e44a4a94b61499f5d15b2cf6e7929ef6
2025-05-09 05:30:08 +02:00

17 lines
346 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Ref {
constructor({ num, gen }) {
this.num = num;
this.gen = gen;
}
toString() {
let str = `${this.num}R`;
if (this.gen !== 0) {
str += this.gen;
}
return str;
}
}
exports.default = Ref;