isValueObject()

True if maybeValue is a JavaScript Object which has both equals() and hashCode() methods.

Method signature

isValueObject(maybeValue: unknown): boolean;

Any two instances of value objects can be compared for value equality with Immutable.is() and can be used as keys in a Map or members in a Set.

;