Skip to content

Commit 8f1753c

Browse files
author
Said Shah
committed
removed empty spaces
1 parent d553eda commit 8f1753c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/utilities/collection-utils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ const _equalsBy = function<T, V>(
5858
const _hasValues = (
5959
...collections: Array<any[] | List<any> | undefined>
6060
): boolean => {
61-
6261
let hasValues = false;
6362
collections.forEach((collection: any[] | List<any> | undefined) => {
6463
if (!_isEmpty(collection)) {
@@ -82,7 +81,6 @@ const _hasValues = (
8281
const _isEmpty = (
8382
...collections: Array<any[] | List<any> | undefined>
8483
): boolean => {
85-
8684
let isEmpty = true;
8785

8886
collections.forEach((collection: any[] | List<any> | undefined) => {

0 commit comments

Comments
 (0)