Skip to content

Commit

Permalink
Remove semicolons from sampleSize and baseClone
Browse files Browse the repository at this point in the history
  • Loading branch information
falsyvalues committed May 15, 2018
1 parent 1859802 commit 0d361bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .internal/baseClone.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
}

if (isTypedArray(value)) {
return result;
return result
}

const keysFunc = isFull
Expand Down
2 changes: 1 addition & 1 deletion sampleSize.js
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0d361bc

Please sign in to comment.