Skip to content

Commit

Permalink
Fix sadness
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezen Thomas committed Mar 23, 2016
1 parent fc7fa8e commit f5df1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

function isThirteen(n, strictEquality) {
return (strictEquality === true) ? n === 13 || n == 13;
return (strictEquality === true) ? n === 13 : n == 13;
}

module.exports = isThirteen;

0 comments on commit f5df1e9

Please sign in to comment.