Files
lodash/_createMathOperation.js
John-David Dalton 35805ec250 Bump to v4.11.2.
2016-04-21 07:06:47 -07:00

38 lines
995 B
JavaScript

import baseToNumber from './_baseToNumber';
import baseToString from './_baseToString';
/**
* Creates a function that performs a mathematical operation on two values.
*
* @private
* @param {Function} operator The function to perform the operation.
* @returns {Function} Returns the new mathematical operation function.
*/
function createMathOperation(operator) {
return function(value, other) {
var result;
if (value === undefined && other === undefined) {
return 0;
}
if (value !== undefined) {
result = value;
}
if (other !== undefined) {
if (result === undefined) {
return other;
}
if (typeof value == 'string' || typeof other == 'string') {
value = baseToString(value);
other = baseToString(other);
} else {
value = baseToNumber(value);
other = baseToNumber(other);
}
result = operator(value, other);
}
return result;
};
}
export default createMathOperation;