Skip to content

Commit

Permalink
Update jshint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iansinnott committed Nov 4, 2018
1 parent d02b53e commit 8db89a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/jstz.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,11 @@ var jstz = (function () {
},
stdTimezoneOffset : function () {
// negative to match what (new Date).getTimezoneOffset() will return
return -lookup_key().split(',')[0]
return -lookup_key().split(',')[0];
},
timezoneOffset : function () {
// negative to match what (new Date).getTimezoneOffset() will return
return -get_date_offset(new Date)
return -get_date_offset(new Date())
}
};
};
Expand Down
2 changes: 1 addition & 1 deletion dist/jstz.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions jstz.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,11 @@ var jstz = (function () {
},
stdTimezoneOffset : function () {
// negative to match what (new Date).getTimezoneOffset() will return
return -lookup_key().split(',')[0]
return -lookup_key().split(',')[0];
},
timezoneOffset : function () {
// negative to match what (new Date).getTimezoneOffset() will return
return -get_date_offset(new Date)
return -get_date_offset(new Date())
}
};
};
Expand Down

0 comments on commit 8db89a0

Please sign in to comment.