UNPKG

hwplugins

Version:

二次封装扩展随机数、手机号码/身份证号码脱敏、时间格式化等...

6 lines (5 loc) 197 B
module.exports = function Random(min = 0, max = 10) { if (min <= Number.MAX_SAFE_INTEGER && max <= Number.MAX_SAFE_INTEGER) { return Math.floor(Math.random() * (max - min + 1)) + min; } };