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:
2021-09-02 16:22:25 +02:00
parent d9226abf85
commit 89ec2d42ac
8402 changed files with 22 additions and 5 deletions

25
node_modules/ramda/es/length.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import _curry1 from "./internal/_curry1.js";
import _isNumber from "./internal/_isNumber.js";
/**
* Returns the number of elements in the array by returning `list.length`.
*
* @func
* @memberOf R
* @since v0.3.0
* @category List
* @sig [a] -> Number
* @param {Array} list The array to inspect.
* @return {Number} The length of the array.
* @example
*
* R.length([]); //=> 0
* R.length([1, 2, 3]); //=> 3
*/
var length =
/*#__PURE__*/
_curry1(function length(list) {
return list != null && _isNumber(list.length) ? list.length : NaN;
});
export default length;