UNPKG

silki

Version:

Cli tool for build react app, based on generator-react-multipage, create-react-app, roadhog. Support react multiple pages app develop.

14 lines (13 loc) 271 B
const randomKeys = []; function generateRandomKey() { let key = Math.random() .toString() .substring(2); while (randomKeys.includes(key)) { key = Math.random() .toString() .substring(2); } return key; } module.exports = generateRandomKey;