UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

12 lines (10 loc) 266 B
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; }