UNPKG

mout

Version:

Modular Utilities

10 lines (9 loc) 272 B
"use strict"; exports.__esModule = true; /** * Checks if the value is created by the `Object` constructor. */ function isPlainObject(value) { return !!value && typeof value === 'object' && value.constructor === Object; } exports["default"] = isPlainObject;