react-keep-alive
Version:
Package will allow components to maintain their status, to avoid repeated re-rendering.
17 lines (16 loc) • 513 B
JavaScript
var hexDigits = '0123456789abcdef';
export var prefix = 'keep-alive';
/**
* Create UUID
* Reference: https://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
* @export
* @returns
*/
export default function createUniqueIdentification(length) {
if (length === void 0) { length = 6; }
var strings = [];
for (var i = 0; i < length; i++) {
strings[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
}
return prefix + "-" + strings.join('');
}