penpotqa/helpers/string-generator.js

4 lines
86 B
JavaScript

export const random = () => {
return Math.random().toString(36).substring(2, 9);
};