UNPKG

167 BJavaScriptView Raw
1import _uniqueId from 'lodash/uniqueId';
2
3// @ts-ignore
4var getUniqueId = function getUniqueId(prefix) {
5 return _uniqueId(prefix + "-");
6};
7
8export { getUniqueId };