This website works better with JavaScript
Domů
Procházet
Nápověda
Registrovat se
Přihlásit se
haojs
/
hh-k8-ampe-mini
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
377601c611
Větve
Značky
master
hh-k8-ampe-mini
/
__antmove
/
component
/
utils
/
nextUid.js
nextUid.js
109 B
Historie
Surový
1
2
3
4
5
module.exports = function nextUid(len = 8) {
return Math.random()
.toString(36)
.substr(len + 1)
}