Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -23,7 +23,6 @@ const objectCtorString = funcToString.call(Object);
* `Object` constructor or one with a `[[Prototype]]` of `null`.
*
* @static
* @memberOf _
* @since 0.8.0
* @category Lang
* @param {*} value The value to check.
@@ -34,16 +33,16 @@ const objectCtorString = funcToString.call(Object);
* this.a = 1;
* }
*
* _.isPlainObject(new Foo);
* isPlainObject(new Foo);
* // => false
*
* _.isPlainObject([1, 2, 3]);
* isPlainObject([1, 2, 3]);
* // => false
*
* _.isPlainObject({ 'x': 0, 'y': 0 });
* isPlainObject({ 'x': 0, 'y': 0 });
* // => true
*
* _.isPlainObject(Object.create(null));
* isPlainObject(Object.create(null));
* // => true
*/
function isPlainObject(value) {