astock-agent/frontend/node_modules/size-sensor/lib/id.js
2026-04-07 20:51:00 +08:00

20 lines
337 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
/**
* Created by hustcc on 18/6/9.
* Contract: i@hust.cc
*/
var id = 1;
/**
* generate unique id in application
* @return {string}
*/
var _default = exports["default"] = function _default() {
return "".concat(id++);
};