export function getPercentageValue(v: string) {
    "worklet"
    if (v.at(-1) !== "%") return null

    return parseInt(v.slice(0, -1), 10) / 100
}
