This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Registrovať
Prihlásiť sa
haojs
/
hh-k8-ampe-mini
Pridať medzi pozorované
1
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Wiki
Branch:
master
Branche
Tagy
master
hh-k8-ampe-mini
/
__antmove
/
component
/
utils
/
nextUid.js
nextUid.js
109 B
Permanentný odkaz
História
Raw
1
2
3
4
5
module.exports = function nextUid(len = 8) {
return Math.random()
.toString(36)
.substr(len + 1)
}