Sha256: c4ee7167eb3a79293b98b16be979dcdec531a511b6ff847c0e58ceb22b4d0010
Contents?: true
Size: 265 Bytes
Versions: 69
Compression:
Stored size: 265 Bytes
Contents
/** * Checks if the value is created by the `Object` constructor. */ function isPlainObject(value) { return (!!value && typeof value === 'object' && value.constructor === Object); } module.exports = isPlainObject;
Version data entries
69 entries across 69 versions & 2 rubygems