4 lines
100 B
JavaScript
4 lines
100 B
JavaScript
|
|
var seed = 0;
|
||
|
|
export default function guid() {
|
||
|
|
return "".concat(Date.now(), "_").concat(seed++);
|
||
|
|
}
|