You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Utilities/Array/getIndexOfFirstCharacter.js

12 lines
337 B

export default function getIndexOfFirstCharacter(items, character) {
return items.findIndex((item) => {
const firstCharacter = 'sortName' in item ? item.sortName.charAt(0) : item.sortTitle.charAt(0);
if (character === '#') {
return !isNaN(Number(firstCharacter));
}
return firstCharacter === character;
});
}