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:
31
node_modules/ramda/es/divide.js
generated
vendored
Normal file
31
node_modules/ramda/es/divide.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import _curry2 from "./internal/_curry2.js";
|
||||
/**
|
||||
* Divides two numbers. Equivalent to `a / b`.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.1.0
|
||||
* @category Math
|
||||
* @sig Number -> Number -> Number
|
||||
* @param {Number} a The first value.
|
||||
* @param {Number} b The second value.
|
||||
* @return {Number} The result of `a / b`.
|
||||
* @see R.multiply
|
||||
* @example
|
||||
*
|
||||
* R.divide(71, 100); //=> 0.71
|
||||
*
|
||||
* const half = R.divide(R.__, 2);
|
||||
* half(42); //=> 21
|
||||
*
|
||||
* const reciprocal = R.divide(1);
|
||||
* reciprocal(4); //=> 0.25
|
||||
*/
|
||||
|
||||
var divide =
|
||||
/*#__PURE__*/
|
||||
_curry2(function divide(a, b) {
|
||||
return a / b;
|
||||
});
|
||||
|
||||
export default divide;
|
Reference in New Issue
Block a user