Skip to content

Commit

Permalink
STY: js style
Browse files Browse the repository at this point in the history
  • Loading branch information
fedarko committed Jul 17, 2020
1 parent a775092 commit 29c831a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion empress/support_files/js/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ define(["underscore"], function (_) {
* @return {Boolean} true if value represents a finite number, else false
*/
function isValidNumber(value) {
return (!isNaN(parseFloat(value)) && isFinite(value));
return !isNaN(parseFloat(value)) && isFinite(value);
}

/**
Expand Down

0 comments on commit 29c831a

Please sign in to comment.