A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 1680a1e4e4b5ca50148f808c16fa15cbee2cdeb0 13 lines 311 B view raw
1export const Temporal = /** @type {any} */ (globalThis).Temporal ?? 2 (await import("temporal-polyfill")).Temporal; 3 4/** 5 * @param {string} a 6 * @param {string} b 7 */ 8export function compareTimestamps(a, b) { 9 return Temporal.Instant.compare( 10 Temporal.Instant.from(a), 11 Temporal.Instant.from(b), 12 ); 13}