Standardized date key format for statistics (yyyy-MM-dd).
All date keys in statistics use the local date string format to ensure consistency.
Parameters
timestamp: number
Unix timestamp in milliseconds.
Returns string
Date key in yyyy-MM-dd format.
Source
exportfunctiongetDateKey(timestamp: number): string { // Delegates to getLocalDateString which guarantees yyyy-MM-dd format returngetLocalDateString(timestamp); }
Standardized date key format for statistics (yyyy-MM-dd). All date keys in statistics use the local date string format to ensure consistency.