This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
登録
サインイン
haojs
/
hh-k8-ampe-mini
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
377601c611
ブランチ
タグ
master
hh-k8-ampe-mini
/
__antmove
/
component
/
utils
/
nextUid.js
nextUid.js
109 B
履歴
Raw
1
2
3
4
5
module.exports = function nextUid(len = 8) {
return Math.random()
.toString(36)
.substr(len + 1)
}