quadrinhos-ia / src /lib /getValidNumber.ts
jbilcke-hf's picture
jbilcke-hf HF staff
let's use two pages
5dd2af5
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))
}