mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 16:57:34 +00:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
/**
|
|
* Generates unique URL param to prevent cached responses (similar to jQuery that Nvidia uses)
|
|
*
|
|
* @return string in format &=1111111111111 (time since epoch in ms)
|
|
*/
|
|
export function timestampUrlParameter(): string {
|
|
return `&_=${Date.now()}`;
|
|
}
|