Files
icehrm/web/node_modules/rc-util/lib/guid.js
2020-05-20 18:47:29 +02:00

11 lines
190 B
JavaScript

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