action-debian-package/node_modules/ramda/es/internal/_aperture.js

12 lines
266 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
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;
}