diff --git a/index.js b/index.js index 65e20f98..e85bcd1a 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,9 @@ -function isThirteen(n) { - return n === 13; +function isThirteen(n, strictEquality) { + if (strictEquality === true) { + return n === 13; + } + + return n == 13; } module.exports = isThirteen;