source: imaps-frontend/node_modules/lodash/multiply.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 530 bytes
RevLine 
[79a0317]1var createMathOperation = require('./_createMathOperation');
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
22module.exports = multiply;
Note: See TracBrowser for help on using the repository browser.