Skip to content

Commit

Permalink
Tiny style correction in createMathOperation.
Browse files Browse the repository at this point in the history
  • Loading branch information
falsyvalues committed Nov 8, 2017
1 parent 76c2e0a commit c3b3c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .internal/createMathOperation.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function createMathOperation(operator, defaultValue) {
if (value === undefined && other === undefined) {
return defaultValue
}
if (value != undefined && other === undefined){
if (value != undefined && other === undefined) {
return value
}
if (other !== undefined && value === undefined) {
Expand Down

0 comments on commit c3b3c71

Please sign in to comment.