UNPKG

@trophyso/node

Version:
16 lines (15 loc) 557 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isPlainObject = isPlainObject; // borrowed from https://github.com/lodash/lodash/blob/master/isPlainObject.js function isPlainObject(value) { if (typeof value !== "object" || value === null) { return false; } const proto = Object.getPrototypeOf(value); if (proto === null) { return true; } // Check that the prototype chain has exactly one level (i.e., proto is Object.prototype) return Object.getPrototypeOf(proto) === null; }