UNPKG
@tianrang-inc/element-react
Version:
latest (1.7.47)
1.7.47
1.7.46
1.7.45
1.7.44
1.7.43
1.7.42
1.7.41
1.7.40
1.7.39
1.7.38
1.7.37
1.7.36
1.7.35
1.7.34
1.7.33
1.7.32
1.7.31
1.7.29
1.7.27
1.7.26
1.7.25
1.7.24
1.7.23
1.7.22
1.7.21
1.7.17
1.7.16
1.7.15
1.7.14
1.7.13
1.7.12
1.7.11
1.7.10
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.10
1.5.9
1.5.8
1.5.7
1.5.5
1.5.4
1.5.0
1.4.20
1.4.19
Element UI for React
github.com/tianrang-inc/element-react
tianrang-inc/element-react
@tianrang-inc/element-react
/
libs
/
utils
/
IDGenerator.js
9 lines
(8 loc)
•
110 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
class
IDGenerator
{
constructor
(
){
this
.
id
=
0
}
next
(
){
return
this
.
id
++ &
0xffff
} }