UNPKG

@readium/navigator-html-injectables

Version:

An embeddable solution for connecting frames of HTML publications with a Readium Navigator

5 lines (4 loc) 253 B
// Quick way to generate random message identifiers with embedded times const maxint = Math.pow(2, 32); const rstr = () => Math.round(Math.random() * maxint).toString(36); export const mid = () => `${Math.round(performance.now())}-${rstr()}-${rstr()}`;