UNPKG
domain-gfx
Version:
latest (0.2.3)
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
Domain graphics drawing library
github.com/EBI-Metagenomics/domain-gfx
EBI-Metagenomics/domain-gfx
domain-gfx
/
src
/
utils
/
uniqueId.js
5 lines
(3 loc)
•
68 B
JavaScript
View Raw
1
2
3
4
5
// @flow
let
id =
0
;
export
default
() =>
`domain-gfx-id-
${++id}
`
;