UNPKG

react-generate-unique-key-for-map

Version:

Create unique keys for map elements that don't have unique property

22 lines (21 loc) 298 B
export function generateUniqueKey() { function s4() { return Math.floor((1 + Math.random()) * 0x10000) .toString(16) .substring(1); } return ( s4() + s4() + "-" + s4() + "-" + s4() + "-" + s4() + "-" + s4() + s4() + s4() ); }