Skip to content

The description below is wrong in README doc file. #24

@koolc

Description

@koolc

the wrong edition

true when created by the Object constructor, or Object.create(null).

...
isPlainObject(null);
//=> true

false when not created by the Object constructor.

...
isPlainObject(Object.create(null));
//=> false

the correct edition

true when created by the Object constructor, or Object.create(null).

...
isPlainObject(Object.create(null));
//=> true

false when not created by the Object constructor.

...
isPlainObject(null);
//=> false

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions