astro-ghostcms/.pnpm-store/v3/files/e5/3994b63d933d6fdc34e34bb17de...

9 lines
344 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export default function isPlainObject(value) {
if (typeof value !== 'object' || value === null) {
return false;
}
const prototype = Object.getPrototypeOf(value);
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
}