Urara-Blog/node_modules/.pnpm-store/v3/files/12/62b51826c5da16904cc8ee5836032c9b2b18c0957c603e5cba15d880dec8d589fde26b0539bd3cbbfd4a45549e5e38f1da76d1cd3233a6a39c6d0fdcfa001e
2022-08-14 01:14:53 +08:00

15 lines
428 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: ()=>isPlainObject
});
function isPlainObject(value) {
if (Object.prototype.toString.call(value) !== "[object Object]") {
return false;
}
const prototype = Object.getPrototypeOf(value);
return prototype === null || prototype === Object.prototype;
}