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

@@ -2,7 +2,6 @@
* Gets the first element of `array`.
*
* @static
* @memberOf _
* @since 0.1.0
* @alias first
* @category Array
@@ -10,10 +9,10 @@
* @returns {*} Returns the first element of `array`.
* @example
*
* _.head([1, 2, 3]);
* head([1, 2, 3]);
* // => 1
*
* _.head([]);
* head([]);
* // => undefined
*/
function head(array) {