Skip to content

Commit 78e44a0

Browse files
authored
feat: Change to Force Deploy (#216)
# Description <!-- Include a summary of the change made and also list the dependencies that are required if any --> ## Issue Ticket Number Fixes #<ISSUE_NUMBER> <!-- Specify above which issue this fixes by referencing the issue number (`#<ISSUE_NUMBER>`) or issue URL. --> <!-- Example: Fixes https://github.com/colbyfayock/cloudinary-util/issues/<ISSUE_NUMBER> --> ## Type of change <!-- Please select all options that are applicable. --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Fix or improve the documentation - [ ] This change requires a documentation update # Checklist <!-- These must all be followed and checked. --> - [ ] I have followed the contributing guidelines of this project as mentioned in [CONTRIBUTING.md](/CONTRIBUTING.md) - [ ] I have created an [issue](https://github.com/colbyfayock/cloudinary-util/issues) ticket for this PR - [ ] I have checked to ensure there aren't other open [Pull Requests](https://github.com/colbyfayock/cloudinary-util/pulls) for the same update/change? - [ ] I have performed a self-review of my own code - [ ] I have run tests locally to ensure they all pass - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes needed to the documentation BREAKING CHANGES: previously changed signature of pollForProcessingImage
1 parent 6f33e97 commit 78e44a0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/util/src/lib/util.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,9 @@ export function sortByKey(
4646
keyB = keyB.toLowerCase();
4747
}
4848

49-
if (keyA < keyB) {
50-
return -1;
51-
}
49+
if (keyA < keyB) return -1;
5250

53-
if (keyA > keyB) {
54-
return 1;
55-
}
51+
if (keyA > keyB) return 1;
5652

5753
return 0;
5854
}

0 commit comments

Comments
 (0)