* ObjectLockInfo.isExpired * @returns {bool} - True if the retention policy has expired
()
| 186 | * @returns {bool} - True if the retention policy has expired |
| 187 | */ |
| 188 | isExpired() { |
| 189 | const now = moment(); |
| 190 | return this.date === null || now.isSameOrAfter(this.date); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * ObjectLockInfo.isExtended |
no outgoing calls
no test coverage detected