UNPKG

js-wrench

Version:

JS函数库

9 lines (8 loc) 226 B
/** * @description 生成唯一的UID * * @return {*} {string} 返回生成的UID字符串 * @example createUID() => 5d33b0fc-692d-41eb-e703-4aa76a8f */ declare const getUID: () => string; export default getUID;