mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
import _ from 'lodash';
|
|
|
|
export default function getIndexOfFirstCharacter(items, character) {
|
|
return _.findIndex(items, (item) => {
|
|
const firstCharacter = item.sortName.charAt(0);
|
|
|
|
if (character === '#') {
|
|
return !isNaN(firstCharacter);
|
|
}
|
|
|
|
return firstCharacter === character;
|
|
});
|
|
}
|