2024-08-20 23:25:37 +04:00

10 lines
189 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = guid;
var seed = 0;
function guid() {
return "".concat(Date.now(), "_").concat(seed++);
}