init
This commit is contained in:
32
node_modules/ramda/es/subtract.js
generated
vendored
Normal file
32
node_modules/ramda/es/subtract.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import _curry2 from "./internal/_curry2.js";
|
||||
/**
|
||||
* Subtracts its second argument from its first argument.
|
||||
*
|
||||
* @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.add
|
||||
* @example
|
||||
*
|
||||
* R.subtract(10, 8); //=> 2
|
||||
*
|
||||
* const minus5 = R.subtract(R.__, 5);
|
||||
* minus5(17); //=> 12
|
||||
*
|
||||
* const complementaryAngle = R.subtract(90);
|
||||
* complementaryAngle(30); //=> 60
|
||||
* complementaryAngle(72); //=> 18
|
||||
*/
|
||||
|
||||
var subtract =
|
||||
/*#__PURE__*/
|
||||
_curry2(function subtract(a, b) {
|
||||
return Number(a) - Number(b);
|
||||
});
|
||||
|
||||
export default subtract;
|
Reference in New Issue
Block a user