UNPKG
react-toastify-redux
Version:
latest (1.0.0-rc.2)
1.0.0-rc.2
1.0.0-rc.1
react-toastify with Redux
github.com/fayster/react-toastify-redux
fayster/react-toastify-redux
react-toastify-redux
/
src
/
utils
/
uniqueId.ts
6 lines
(5 loc)
•
117 B
text/typescript
View Raw
1
2
3
4
5
6
let
idCounter =
0
;
export
default
(
prefix
:
string
) => {
const
id = ++idCounter;
return
`
${prefix}
${id}
`
; };