uu_id/index.js

// import { v4 as uuidv4 } from "uuid";
/**
 * 功能:生成不重复的唯一id
 * @param {undefined}  - 不需要传递参数
 * @returns {string} - string
 */
function uu_id() {
  // return uuidv4();
}
export default uu_id;