Array
- chunk
 - compact
 - concat
 - difference
 - differenceBy
 - differenceWith
 - drop
 - dropRight
 - dropRightWhile
 - dropWhile
 - fill
 - findIndex
 - findLastIndex
 - flatten
 - flattenDeep
 - flattenDepth
 - fromPairs
 - head(first)
 - indexOf
 - initial
 - intersection
 - intersectionBy
 - intersectionWith
 - join
 - last
 - lastIndexOf
 - nth
 - pull
 - pullAll
 - pullAllBy
 - pullAllWith
 - pullAt
 - remove
 - reverse
 - slice
 - sortedIndex
 - sortedIndexBy
 - sortedIndexOf
 - sortedLastIndex
 - sortedLastIndexBy
 - sortedLastIndexOf
 - sortedUniq
 - sortedUniqBy
 - tail
 - take
 - takeRight
 - takeRightWhile
 - takeWhile
 - union
 - unionBy
 - unionWith
 - uniq
 - uniqBy
 - uniqWith
 - unzip
 - unzipWith
 - without
 - xor
 - xorBy
 - xorWith
 - zip
 - zipObject
 - zipObjectDeep
 - zipWith
 
Collection
Date
Function
Lang
- castArray
 - clone
 - cloneDeep
 - cloneDeepWith
 - cloneWith
 - conformsTo
 - eq
 - gt
 - gte
 - isArguments
 - isArray
 - isArrayBuffer
 - isArrayLike
 - isArrayLikeObject
 - isBoolean
 - isBuffer
 - isDate
 - isElement
 - isEmpty
 - isEqual
 - isEqualWith
 - isError
 - isFinite
 - isFunction
 - isInteger
 - isLength
 - isMap
 - isMatch
 - isMatchWith
 - isNaN
 - isNative
 - isNil
 - isNull
 - isNumber
 - isObject
 - isObjectLike
 - isPlainObject
 - isRegExp
 - isSafeInteger
 - isSet
 - isString
 - isSymbol
 - isTypedArray
 - isUndefined
 - isWeakMap
 - isWeakSet
 - lt
 - lte
 - toArray
 - toFinite
 - toInteger
 - toLength
 - toNumber
 - toPlainObject
 - toSafeInteger
 - toString
 
Math
Number
Object
- assign
 - assignIn(extend)
 - assignInWith(extendWith)
 - assignWith
 - at
 - create
 - defaults
 - defaultsDeep
 - findKey
 - findLastKey
 - forIn
 - forInRight
 - forOwn
 - forOwnRight
 - functions
 - functionsIn
 - get
 - has
 - hasIn
 - invert
 - invertBy
 - invoke
 - keys
 - keysIn
 - mapKeys
 - mapValues
 - merge
 - mergeWith
 - omit
 - omitBy
 - pick
 - pickBy
 - result
 - set
 - setWith
 - toPairs(entries)
 - toPairsIn(entriesIn)
 - transform
 - unset
 - update
 - updateWith
 - values
 - valuesIn
 
Seq
String
Util
ctrl + k
isInteger
Lang
since 4.0.0
Arguments
- * The value to check.
 
Returns
boolean `true` if `value` is an integer, else `false`.
Checks if value is an integer.
Note: This method is based on
Number.isInteger.
Example of Lodash _.isInteger
_.isInteger(3);
// => true
_.isInteger(Number.MIN_VALUE);
// => false
_.isInteger(Infinity);
// => false
_.isInteger('3');
// => false