From 0d361bc7b65cb3aa2bdf529ca64f8dd5c9836c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Tue, 15 May 2018 10:50:43 +0200 Subject: [PATCH] Remove semicolons from `sampleSize` and `baseClone` --- .internal/baseClone.js | 2 +- sampleSize.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.internal/baseClone.js b/.internal/baseClone.js index 86d291ce3..609ed6d3d 100644 --- a/.internal/baseClone.js +++ b/.internal/baseClone.js @@ -219,7 +219,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) { } if (isTypedArray(value)) { - return result; + return result } const keysFunc = isFull diff --git a/sampleSize.js b/sampleSize.js index c6ae21b10..265713cbf 100644 --- a/sampleSize.js +++ b/sampleSize.js @@ -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