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:
30
node_modules/ramda/es/lte.js
generated
vendored
Normal file
30
node_modules/ramda/es/lte.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import _curry2 from "./internal/_curry2.js";
|
||||
/**
|
||||
* Returns `true` if the first argument is less than or equal to the second;
|
||||
* `false` otherwise.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.1.0
|
||||
* @category Relation
|
||||
* @sig Ord a => a -> a -> Boolean
|
||||
* @param {Number} a
|
||||
* @param {Number} b
|
||||
* @return {Boolean}
|
||||
* @see R.gte
|
||||
* @example
|
||||
*
|
||||
* R.lte(2, 1); //=> false
|
||||
* R.lte(2, 2); //=> true
|
||||
* R.lte(2, 3); //=> true
|
||||
* R.lte('a', 'z'); //=> true
|
||||
* R.lte('z', 'a'); //=> false
|
||||
*/
|
||||
|
||||
var lte =
|
||||
/*#__PURE__*/
|
||||
_curry2(function lte(a, b) {
|
||||
return a <= b;
|
||||
});
|
||||
|
||||
export default lte;
|
Reference in New Issue
Block a user