UNPKG

mout

Version:

Modular Utilities

9 lines (7 loc) 239 B
/** * Checks if the value is created by the `Object` constructor. */ function isPlainObject(value: any): value is Object { return !!value && typeof value === 'object' && value.constructor === Object; } export default isPlainObject;