Files
GNX-mailEnterprise/frontend/node_modules/http-proxy-middleware/node_modules/is-plain-obj/index.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

11 lines
245 B
JavaScript

'use strict';
module.exports = value => {
if (Object.prototype.toString.call(value) !== '[object Object]') {
return false;
}
const prototype = Object.getPrototypeOf(value);
return prototype === null || prototype === Object.prototype;
};