guid.js 100 B

1234
  1. var seed = 0;
  2. export default function guid() {
  3. return "".concat(Date.now(), "_").concat(seed++);
  4. }