Files
Shifted/node_modules/core-js-pure/modules/esnext.iterator.sliding.js
2026-02-10 01:14:19 +00:00

12 lines
389 B
JavaScript

'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');
}
});