Move doc node from shimIsPlainObject to _.isPlainObject. [ci skip]

This commit is contained in:
John-David Dalton
2014-04-14 09:01:42 -07:00
parent 9b1c7bb1e3
commit f54cc28a43

View File

@@ -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