UNPKG

@dsb.dk/designsystem

Version:

Development environment for creating components to the DSB Designsystem.

12 lines (10 loc) 181 B
/** * Id * Generates a random string that's good for id's */ var randomId = () => '-' + Math.random() .toString(36) .substr(2, 9); export { randomId as r };