@hwycdfatm/is-odd 0.0.10 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -31,6 +31,8 @@ module.exports = function isOdd(number) {
31
31
  if (number === 8) return false
32
32
  if (number === 9) return true
33
33
  if (number === 10) return false
34
+ if (number === 11) return true
35
+ if (number === 12) return false
34
36
 
35
37
  return null
36
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hwycdfatm/is-odd",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "Returns true if a number is odd, false if even, null if not implemented yet (troll version - updates coming soon!)",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",