()
| 22 | * Returns a timestamp in seconds since the UNIX epoch using the Date API. |
| 23 | */ |
| 24 | export function dateTimestampInSeconds(): number { |
| 25 | return safeDateNow() / ONE_SECOND_IN_MS; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Returns a wrapper around the native Performance API browser implementation, or undefined for browsers that do not |
no test coverage detected