UNPKG
simple-captcha
Version:
latest (0.1.10)
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Simple node captcha service
github.com/JSSDKCN/simple-captcha
JSSDKCN/simple-captcha
simple-captcha
/
lib
/
getFontSize.js
6 lines
(5 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
module
.exports =
function
(height, width, font)
{ var
max
= height *
0.6
; //
max
is
50
% of height var
min
= height *
0.6
; //
min
is
40
% of height
return
Math.
floor
(Math.
random
() * (
max
-
min
+
1
)) +
min
; };