export function genOptimisticId() { return `optimistic-${Math.round(Math.random() * 1000000)}`; } export function isOptimisticId(id: any) { if (typeof id !== 'string') { return false; } return id.startsWith('optimistic'); }