mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 20:07:49 +00:00
Remove references to _.
This commit is contained in:
3
uniq.js
3
uniq.js
@@ -8,14 +8,13 @@ import baseUniq from './_baseUniq.js';
|
||||
* in the array.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 0.1.0
|
||||
* @category Array
|
||||
* @param {Array} array The array to inspect.
|
||||
* @returns {Array} Returns the new duplicate free array.
|
||||
* @example
|
||||
*
|
||||
* _.uniq([2, 1, 2]);
|
||||
* uniq([2, 1, 2]);
|
||||
* // => [2, 1]
|
||||
*/
|
||||
function uniq(array) {
|
||||
|
||||
Reference in New Issue
Block a user