UNPKG

wechatbot-webhook

Version:

给微信里加个 webhook 机器人,支持docker部署

11 lines (10 loc) 297 B
module.exports = (num = 12) => { const charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~' let token = '' for (let i = 0; i < num; i++) { const randomIndex = Math.floor(Math.random() * charset.length) token += charset[randomIndex] } return token }