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/isPositiveInfinity.js
const isPositiveInfinity = (x) => x === Number.POSITIVE_INFINITY; export default isPositiveInfinity;