Determine if a value is a float
Pass in a value and get a boolean telling you if the value is a float.
import * as _ from 'radashi' _.isFloat(12.233) // => true_.isFloat(12) // => false_.isFloat('hello') // => false