madiator.com/ui/util/generate-thumbnail-name.js
2021-08-16 12:11:25 +02:00

7 lines
273 B
JavaScript

// @flow
export const generateThumbnailName = (): string => {
let text = '';
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < 24; i += 1) text += possible.charAt(Math.floor(Math.random() * 62));
return text;
};