checks if the number provided is not odd
const notodd = require('not-odd')
notodd(3) // => false
notodd(69) // => false
notodd(4) // => true
that's it
checks if the number provided is not odd
const notodd = require('not-odd')
notodd(3) // => false
notodd(69) // => false
notodd(4) // => true
that's it