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.

12 lines
389 B

'use strict';
var $ = require('../internals/export');
var iteratorWindow = require('../internals/iterator-window');
// `Iterator.prototype.sliding` method
// https://github.com/tc39/proposal-iterator-chunking
$({ target: 'Iterator', proto: true, real: true, forced: true }, {
sliding: function sliding(windowSize) {
return iteratorWindow(this, windowSize, 'allow-partial');
}
});