mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Remove semicolons from sampleSize and baseClone
This commit is contained in:
@@ -219,7 +219,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
|
||||
}
|
||||
|
||||
if (isTypedArray(value)) {
|
||||
return result;
|
||||
return result
|
||||
}
|
||||
|
||||
const keysFunc = isFull
|
||||
|
||||
@@ -34,7 +34,7 @@ function sampleSize(array, n) {
|
||||
result[rand] = result[index]
|
||||
result[index] = value
|
||||
}
|
||||
return slice(result, 0, n);
|
||||
return slice(result, 0, n)
|
||||
}
|
||||
|
||||
export default sampleSize
|
||||
|
||||
Reference in New Issue
Block a user