diff --git a/lodash.js b/lodash.js index 3a3dfd224..e3e3dfe18 100644 --- a/lodash.js +++ b/lodash.js @@ -2275,9 +2275,6 @@ * is an object created by the `Object` constructor or has a `[[Prototype]]` * of `null`. * - * Note: This method assumes objects created by the `Object` constructor - * have no inherited enumerable properties. - * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. @@ -6456,6 +6453,9 @@ * Checks if `value` is an object created by the `Object` constructor or has * a `[[Prototype]]` of `null`. * + * Note: This method assumes objects created by the `Object` constructor + * have no inherited enumerable properties. + * * @static * @memberOf _ * @category Objects