Number
Convert a value to a float if possible
The _.toFloat function will do its best to convert the given value to a float.
_.toFloat
import { toFloat } from 'radash' toFloat(0) // => 0.0 toFloat(null) // => 0.0 toFloat(null, 3.33) // => 3.33