Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
koolc opened this issue Feb 27, 2021 · 1 comment
Open

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

koolc opened this issue Feb 27, 2021 · 1 comment

Comments

@koolc
Copy link

koolc commented Feb 27, 2021

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
@TrySound
Copy link
Collaborator

Hi, could you send PR?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants