UNPKG

@txdfe/at

Version:

一个设计体系组件库

11 lines (10 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.nextUid = void 0; var seq = 0; var nextUid = exports.nextUid = function nextUid() { var prefix = Math.random().toString(16).slice(2, 5); return "".concat(prefix).concat(++seq); };