UNPKG

flo-utils

Version:
17 lines (14 loc) 385 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * @name randomId 随记ID * @returns 生成10-12位不等的字符串, 36进制, 数据量超大不合适 */ function randomId() { return Math.random().toString(36).slice(2); // 截取小数点后的字符串 } var _default = randomId; exports.default = _default;