Remove semicolons from sampleSize and baseClone

This commit is contained in:
Michał Lipiński
2018-05-15 10:50:43 +02:00
parent 1859802d05
commit 0d361bc7b6
2 changed files with 2 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
}
if (isTypedArray(value)) {
return result;
return result
}
const keysFunc = isFull

View File

@@ -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