()
| 83 | |
| 84 | /** Returns the number of seconds elapsed since January 1, 1970 00:00:00 UTC. */ |
| 85 | export function now() { |
| 86 | return Math.floor(Date.now() / 1000); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Inspired by [Broadcast Channel API](https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_Channel_API) |
no outgoing calls
no test coverage detected