Skip to content

Commit

Permalink
Treat null as a valid plain object prototype in isPlainObject()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilyklem committed Nov 13, 2021
1 parent 24bbf9f commit c8f71b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/toolkit/src/isPlainObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@
export default function isPlainObject(value: unknown): value is object {
if (typeof value !== 'object' || value === null) return false

let proto = value
while (Object.getPrototypeOf(proto) !== null) {
proto = Object.getPrototypeOf(proto)
let proto = Object.getPrototypeOf(value)
if (proto === null) return true

let baseProto = proto
while (Object.getPrototypeOf(baseProto) !== null) {
baseProto = Object.getPrototypeOf(baseProto)
}

return Object.getPrototypeOf(value) === proto
return proto === baseProto
}
1 change: 1 addition & 0 deletions packages/toolkit/src/tests/isPlainObject.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ describe('isPlainObject', () => {
expect(isPlainObject(null)).toBe(false)
expect(isPlainObject(undefined)).toBe(false)
expect(isPlainObject({ x: 1, y: 2 })).toBe(true)
expect(isPlainObject(Object.create(null))).toBe(true)
})
})

0 comments on commit c8f71b6

Please sign in to comment.