no message
This commit is contained in:
22
.output/server/node_modules/lodash-es/multiply.js
generated
vendored
22
.output/server/node_modules/lodash-es/multiply.js
generated
vendored
@@ -1,22 +0,0 @@
|
||||
import createMathOperation from './_createMathOperation.js';
|
||||
|
||||
/**
|
||||
* Multiply two numbers.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 4.7.0
|
||||
* @category Math
|
||||
* @param {number} multiplier The first number in a multiplication.
|
||||
* @param {number} multiplicand The second number in a multiplication.
|
||||
* @returns {number} Returns the product.
|
||||
* @example
|
||||
*
|
||||
* _.multiply(6, 4);
|
||||
* // => 24
|
||||
*/
|
||||
var multiply = createMathOperation(function(multiplier, multiplicand) {
|
||||
return multiplier * multiplicand;
|
||||
}, 1);
|
||||
|
||||
export default multiply;
|
Reference in New Issue
Block a user