yjs/src/Util/ID.js
2017-10-14 23:03:24 +02:00

19 lines
418 B
JavaScript

import { getReference } from './structReferences.js'
export default class ID {
constructor (user, clock) {
this.user = user
this.clock = clock
}
clone () {
return new ID(this.user, this.clock)
}
equals (id) {
return id !== null && id.user === this.user && id.clock === this.user
}
lessThan (id) {
return this.user < id.user || (this.user === id.user && this.clock < id.clock)
}
}