[refactor] remove unnecessary return statement

This commit is contained in:
Kuldeep M 2019-05-24 15:07:19 +01:00
parent d030ae8a61
commit e2b5642d56
2 changed files with 1 additions and 2 deletions

View File

@ -72,7 +72,6 @@ var date = (function() {
number: function(value) {
if (state.get().header.date.month.ordinal) {
return helper.ordinalNumber(value + 1);
return value + 1;
} else {
return value + 1;
};

View File

@ -1,7 +1,7 @@
var version = (function() {
// version is normally bumped when the state needs changing or any new functionality is added
var current = "3.1.5";
var current = "3.1.6";
var compare = function(a, b) {
var pa = a.split(".");