persona-community-5/.pnpm-store/v3/files/3a/0b79edb5987f40752a3b150e7785a33b62afe6d05dc6f0ebcd659e6ce02c40dca6e2df136c89e1d75ca6d3923a2491adeaefdf473f756ade0ad8f43f88bcb2
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
262 B
Plaintext

export default function isPlainObject(value) {
if (Object.prototype.toString.call(value) !== '[object Object]') {
return false
}
const prototype = Object.getPrototypeOf(value)
return prototype === null || Object.getPrototypeOf(prototype) === null
}