-
-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Description
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
Labels
No labels