Home
Manual
Reference
Source
F
isArray
F
isBoolean
F
isDate
F
isFinite
F
isFunction
F
isInstance
F
isInt
F
isInt32
F
isNaN
F
isNegativeInfinity
F
isNull
F
isNumber
F
isObject
F
isPositiveInfinity
F
isRegExp
F
isString
F
isUndefined
src/isNegativeInfinity.js
const isNegativeInfinity = (x) => x === Number.NEGATIVE_INFINITY; export default isNegativeInfinity;