This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
haojs
/
hh-k8-ampe-mini
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Branche:
master
Branches
Tags
master
hh-k8-ampe-mini
/
__antmove
/
component
/
utils
/
nextUid.js
nextUid.js
109 B
Lien permanent
Historique
Raw
1
2
3
4
5
module.exports = function nextUid(len = 8) {
return Math.random()
.toString(36)
.substr(len + 1)
}