swc/crates/swc_bundler/tests/.cache/deno/f88af64c689473291055effbedab4343850440f1.ts
2021-11-09 20:42:49 +09:00

14 lines
345 B
TypeScript

// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_aperture.js
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;
}