* Gets the current Unix timestamp with skew correction.
()
| 254 | * Gets the current Unix timestamp with skew correction. |
| 255 | */ |
| 256 | static getUnixTimestamp(): number { |
| 257 | return Date.now() / 1000 + DRM.clockSkewSeconds |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Parses an RFC 2616 date string into a Unix timestamp. |
no outgoing calls
no test coverage detected