guid.js 100 Bytes Raw Blame History Permalink 1 2 3 4 var seed = 0; export default function guid() { return "".concat(Date.now(), "_").concat(seed++); }