RyanofWoods/rails-react-swedish-birds

View on GitHub
app/javascript/react_app/helpers/sort_helpers.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const compareString = (a: string, b: string): -1 | 0 | 1 => {
  if (a === b) return 0

  return (a < b) ? -1 : 1
}