From f54cc28a435d1453a2184b73dfff68d10aae2dc2 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 14 Apr 2014 09:01:42 -0700 Subject: [PATCH] Move doc node from `shimIsPlainObject` to `_.isPlainObject`. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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