mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
style: remove redundant eslint suppressions (#1667)
This commit is contained in:
@ -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')
|
||||
}
|
||||
|
Reference in New Issue
Block a user