Skip to content

Commit 1990abc

Browse files
committed
remove unused code
1 parent 53a0652 commit 1990abc

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

src/components/BibleBookList/config.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -475,14 +475,3 @@ export const NEW_TESTAMENT_LIST = [
475475
},
476476
];
477477
export const BIBLE_LIST = OLD_TESTAMENT_LIST.concat(NEW_TESTAMENT_LIST);
478-
export const isEqual = (a, b) => {
479-
if (a.length !== b.length) {
480-
return false;
481-
}
482-
a.forEach((item) => {
483-
if (!b.includes(item)) {
484-
return false;
485-
}
486-
});
487-
return true;
488-
};

0 commit comments

Comments
 (0)