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