UNPKG

butter-toast

Version:

Smooth toast notifications for react apps

7 lines (6 loc) 218 B
export default function generateId(prefix) { const time = `${Date.now()}`.slice(-8); const rand = `${Math.random()}`.slice(2); const id = time + rand; return prefix ? `${prefix}_${id}` : time + rand; }