Function isObject

  • It will determine whether the provided value is an Object or not.

    Parameters

    • value: unknown

    Returns value is RecordT

    Since

    1.0.0

    Example

    isObject({});
    // => true

    Example

    isObject([1, 2, 3]);
    // => true

    Example

    isObject(() => 0);
    // => true

    Example

    isObject(null);
    // => false