style: remove redundant eslint suppressions (#1667)

This commit is contained in:
Piotr Idzik
2024-06-11 22:10:48 +02:00
committed by GitHub
parent 1554ba5f9c
commit 79b93d35b6
6 changed files with 1 additions and 11 deletions

View File

@ -12,7 +12,6 @@
*/
function QuickSelect(items, kth) {
// eslint-disable-line no-unused-vars
if (kth < 1 || kth > items.length) {
throw new RangeError('Index Out of Bound')
}