Merge branch 'master' into release
This commit is contained in:
commit
8f90c257d6
@ -58,7 +58,7 @@ const toInt = (v, def = 0, min = null, max = null) => {
|
||||
min = isFinite(min) ? (typeof min === 'string' ? parseInt(min) : min) : null
|
||||
max = isFinite(max) ? (typeof max === 'string' ? parseInt(max) : max) : null
|
||||
if (!isFinite(v)) return def
|
||||
v = parseInt(v)
|
||||
if (typeof v === 'string') v = parseInt(v)
|
||||
if (min !== null && v < min) v = min
|
||||
if (max !== null && v > max) v = max
|
||||
return v
|
||||
|
Loading…
Reference in New Issue
Block a user