server-json/node_modules/ramda/es/internal/_aperture.js
2024-11-01 08:00:42 +00:00

10 lines
No EOL
264 B
JavaScript

export default function _aperture(n, list) {
var idx = 0;
var limit = list.length - (n - 1);
var acc = new Array(limit >= 0 ? limit : 0);
while (idx < limit) {
acc[idx] = Array.prototype.slice.call(list, idx, idx + n);
idx += 1;
}
return acc;
}