source: imaps-frontend/node_modules/lodash-es/multiply.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 528 bytes
Line 
1import createMathOperation from './_createMathOperation.js';
2
3/**
4 * Multiply two numbers.
5 *
6 * @static
7 * @memberOf _
8 * @since 4.7.0
9 * @category Math
10 * @param {number} multiplier The first number in a multiplication.
11 * @param {number} multiplicand The second number in a multiplication.
12 * @returns {number} Returns the product.
13 * @example
14 *
15 * _.multiply(6, 4);
16 * // => 24
17 */
18var multiply = createMathOperation(function(multiplier, multiplicand) {
19 return multiplier * multiplicand;
20}, 1);
21
22export default multiply;
Note: See TracBrowser for help on using the repository browser.