mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 02:47:50 +00:00
Tiny style correction in createMathOperation.
This commit is contained in:
@@ -14,7 +14,7 @@ function createMathOperation(operator, defaultValue) {
|
|||||||
if (value === undefined && other === undefined) {
|
if (value === undefined && other === undefined) {
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
if (value != undefined && other === undefined){
|
if (value != undefined && other === undefined) {
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
if (other !== undefined && value === undefined) {
|
if (other !== undefined && value === undefined) {
|
||||||
|
|||||||
Reference in New Issue
Block a user