@kerthin/domain
Version:
Kerthin Domain (based on DDD)
26 lines • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Identifier = void 0;
class Identifier {
constructor(value) {
this.value = value;
this.value = value;
}
equals(id) {
if (id === null || id === undefined) {
return false;
}
if (!(id instanceof this.constructor)) {
return false;
}
return id.toValue() === this.value;
}
toString() {
return String(this.value);
}
toValue() {
return this.value;
}
}
exports.Identifier = Identifier;
//# sourceMappingURL=identifier.js.map