Skip to content

Commit

Permalink
refactor: Apply eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mic-web authored and github-actions[bot] committed Apr 22, 2024
1 parent 61c1234 commit 302b216
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/array.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {
containSameValues, firstIfSingle,
containSameValues,
firstIfSingle,
insertIf,
isEmptyArray,
isNonEmptyArray,
Expand All @@ -10,7 +11,7 @@ import {
sortByArray,
toggleElement,
withoutIndex,
} from "./array";
} from './array';
import { Maybe } from './types';

describe('NonEmptyArray', () => {
Expand Down Expand Up @@ -251,4 +252,4 @@ describe('firstIfSingle', () => {
it('returns first element for arrays with multiple elements if the first element is null', () => {
expect(firstIfSingle([null, 2])).toEqual(null);
});
});
});

0 comments on commit 302b216

Please sign in to comment.