* Checks if `value` is, or can be coerced to, a finite number. * * Note: This is not the same as native `isFinite` which will return true for * booleans and empty strings. See http://es5.github.io/#x15.1.2.5. * * @static * @memberOf _ * @category Objects * @pa
(value)
| 37505 | * // => false |
| 37506 | */ |
| 37507 | function isFinite(value) { |
| 37508 | return nativeIsFinite(value) && !nativeIsNaN(parseFloat(value)); |
| 37509 | } |
| 37510 | |
| 37511 | /** |
| 37512 | * Checks if `value` is a function. |
no outgoing calls
no test coverage detected