Skip to content

Commit

Permalink
chore: Remove superflous semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Jun 14, 2015
1 parent 06c9687 commit 13b2b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var useragent = require('useragent')

exports.browserFullNameToShort = function (fullName) {
var agent = useragent.parse(fullName)
return agent.family !== 'Other' ? agent.toAgent() + ' (' + agent.os + ')' : fullName;
return agent.family !== 'Other' ? agent.toAgent() + ' (' + agent.os + ')' : fullName
}

exports.isDefined = function (value) {
Expand Down

0 comments on commit 13b2b72

Please sign in to comment.