@traversable/schema
    Preparing search index...

    Variable Number_isNaNConst

    Number_isNaN: (x: unknown) => x is number = ...

    Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).

    Unlike the global isNaN(), Number.isNaN() doesn't forcefully convert the parameter to a number.

    Only values of the type number, that are also NaN, result in true.

    Type declaration

      • (x: unknown): x is number
      • Parameters

        • x: unknown

        Returns x is number