Documentation
    Preparing search index...

    Variable isPlainObjectConst

    isPlainObject: AssertionFunction<AnyRecord> = ...

    Returns whether something is a plain object A plain object is an object that either has no prototype at all (no inherited methods) or only inherits from Object.prototype

    isPlainObject({ a: 1 }); // true
    isPlainObject(pojo()); // true
    isPlainObject(new Date()); // false

    The value to compare.