mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
6 lines
97 B
JavaScript
6 lines
97 B
JavaScript
function sortByName(a, b) {
|
|
return a.name.localeCompare(b.name);
|
|
}
|
|
|
|
export default sortByName;
|