UNPKG

validate-types

Version:

Validate object properties against type schema

6 lines (5 loc) 157 B
module.exports = function isPlainObject(obj) { return Boolean(obj) === true && typeof obj === 'object' && obj.constructor === Object; };