mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -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;
|