You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					23 lines
				
				491 B
			
		
		
			
		
	
	
					23 lines
				
				491 B
			| 
								 
											3 years ago
										 
									 | 
							
								var createMathOperation = require('./_createMathOperation');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Divide two numbers.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @static
							 | 
						||
| 
								 | 
							
								 * @memberOf _
							 | 
						||
| 
								 | 
							
								 * @since 4.7.0
							 | 
						||
| 
								 | 
							
								 * @category Math
							 | 
						||
| 
								 | 
							
								 * @param {number} dividend The first number in a division.
							 | 
						||
| 
								 | 
							
								 * @param {number} divisor The second number in a division.
							 | 
						||
| 
								 | 
							
								 * @returns {number} Returns the quotient.
							 | 
						||
| 
								 | 
							
								 * @example
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * _.divide(6, 4);
							 | 
						||
| 
								 | 
							
								 * // => 1.5
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								var divide = createMathOperation(function(dividend, divisor) {
							 | 
						||
| 
								 | 
							
								  return dividend / divisor;
							 | 
						||
| 
								 | 
							
								}, 1);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = divide;
							 |