ai-tube / src /lib /getValidNumber.ts
jbilcke-hf's picture
jbilcke-hf HF staff
🍿
1f122c3
raw history blame
No virus
360 Bytes
export const getValidNumber = (something: any, minValue: number, maxValue: number, defaultValue: number) => {
const strValue = `${something || defaultValue}`
const numValue = Number(strValue)
const isValid = !isNaN(numValue) && isFinite(numValue)
if (!isValid) {
return defaultValue
}
return Math.max(minValue, Math.min(maxValue, numValue))
}