Iterable windowed iteration for JavaScript. See docs.
⚠️ Depending on your environment, the code may requireregeneratorRuntime
to be defined, for instance by importing regenerator-runtime/runtime.
import {window} from '@iterable-iterator/window';
for (const [x, y] of window(2, 'abcde')) ... ; // ab bc cd de