🎚 Window-sliding insertion algorithm in JavaScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
371 B

'use strict';
const slideHelper = require('./slideHelper');
class Slider {
constructor (options) {
this.windowSize = options.size;
this.predicate = options.predicate;
this.prefer = options.prefer;
this.accepting = options.accepting;
}
slide (host, guest) {
return slideHelper(this.windowSize, this.predicate, host, guest);
}
};
module.exports = Slider;