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