node-ejs-renderer/node_modules/form-data-encoder/lib/esm/util/isPlainObject.js
2024-06-09 13:55:01 -04:00

14 lines
442 B
JavaScript

const getType = (value) => (Object.prototype.toString.call(value).slice(8, -1).toLowerCase());
function isPlainObject(value) {
if (getType(value) !== "object") {
return false;
}
const pp = Object.getPrototypeOf(value);
if (pp === null || pp === undefined) {
return true;
}
const Ctor = pp.constructor && pp.constructor.toString();
return Ctor === Object.toString();
}
export default isPlainObject;