mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Minor formatting nit for _.without.
This commit is contained in:
@@ -5437,9 +5437,7 @@
|
||||
* // => [3]
|
||||
*/
|
||||
var without = restParam(function(array, values) {
|
||||
return isArrayLike(array)
|
||||
? baseDifference(array, values)
|
||||
: [];
|
||||
return isArrayLike(array) ? baseDifference(array, values) : [];
|
||||
});
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user