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

@@ -7,7 +7,6 @@ import baseCreate from './_baseCreate.js';
* are assigned to the created object.
*
* @static
* @memberOf _
* @since 2.3.0
* @category Object
* @param {Object} prototype The object to inherit from.
@@ -24,7 +23,7 @@ import baseCreate from './_baseCreate.js';
* Shape.call(this);
* }
*
* Circle.prototype = _.create(Shape.prototype, {
* Circle.prototype = create(Shape.prototype, {
* 'constructor': Circle
* });
*