diff --git a/src/array.test.ts b/src/array.test.ts index 877b5a9..8f7e8de 100644 --- a/src/array.test.ts +++ b/src/array.test.ts @@ -1,5 +1,6 @@ import { - containSameValues, firstIfSingle, + containSameValues, + firstIfSingle, insertIf, isEmptyArray, isNonEmptyArray, @@ -10,7 +11,7 @@ import { sortByArray, toggleElement, withoutIndex, -} from "./array"; +} from './array'; import { Maybe } from './types'; describe('NonEmptyArray', () => { @@ -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); }); -}); \ No newline at end of file +});