diff --git a/lodash.js b/lodash.js index cc7e1cf75..c28fd5e0d 100644 --- a/lodash.js +++ b/lodash.js @@ -8573,7 +8573,7 @@ * // => false */ function isInteger(value) { - return value === toInteger(value); + return typeof value == 'number' && value == toInteger(value); } /**