Browse Source

[fix] Renamed function call

master
Muthu Kumar 6 years ago
committed by GitHub
parent
commit
08649dec77
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      structures/slider.js

4
structures/slider.js

@ -31,7 +31,7 @@ class Slider {
) return [ firstMatch, i ];
const newWindow = new Deck(...guest.slice(++i, k));
if(newWindow.length !== 0 && newWindow.length === k) return recurse(newWindow, i);
if(newWindow.length !== 0 && newWindow.length === k) return startSliding(newWindow, i);
return [ -1, -1 ];
@ -42,4 +42,4 @@ class Slider {
}
};
module.exports = Slider;
module.exports = Slider;

Loading…
Cancel
Save