UNPKG

react-captcha-code-li

Version:

基于React和canvas的验证码,不包含0,1,L,O

47 lines (46 loc) 707 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // 随机数字 function randomNum(m, n) { return Math.floor(Math.random() * (n - m + 1) + m); } exports.randomNum = randomNum; // 随机颜色 function randomColor() { return "rgb(" + randomNum(0, 255) + ", " + randomNum(0, 255) + ", " + randomNum(0, 255) + ")"; } exports.randomColor = randomColor; exports.originalCharacter = [ '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ];