refactor(Cypress): Moved Cypress to the main folder of the project, as I don't need a sub project for now.
This commit is contained in:
12
node_modules/ramda/es/internal/_aperture.js
generated
vendored
Normal file
12
node_modules/ramda/es/internal/_aperture.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user