This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
haojs
/
hh-k8-ampe-mini
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Gałąź:
master
Gałęzie
Tagi
master
hh-k8-ampe-mini
/
__antmove
/
component
/
utils
/
nextUid.js
nextUid.js
109 B
Bezpośredni odnośnik
Historia
Czysty
1
2
3
4
5
module.exports = function nextUid(len = 8) {
return Math.random()
.toString(36)
.substr(len + 1)
}