1.0.0 • Published 2 years ago

hrbu-util v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

安装

npm install hrbu-util

导入

const hrbuUtil = require("hrbu-util");

格式化时间

// 调用 dataFormat 对时间进行格式化
const  dtStr = hrbuUtil.dateFormat(new Date());

// 结果 2022-3-24 20:01:33

4位验证码

// 获取4位字母与数字组成的验证码
const  dtStr = hrbuUtil.verificationCode(4);

// 结果 rds7

6位验证码

// 获取6位字母与数字组成的验证码
const  dtStr = hrbuUtil.verificationCode(6);

// 结果 vr9ktc