is.odd(1)
is.odd(-1)
is.odd(BigInt(1))
is.odd(1n)
is.odd(-31n)
is.odd(BigInt(2))
is.odd(0)
is.odd('undefined')
is.odd('null')
is.odd(Symbol())
is.odd(null)
is.odd(true)
is.odd([])
is.odd(false)
is.odd("")
is.odd('')
is.odd(``)
is.odd({})
is.odd(undefined)
is.odd(Function)
is.odd(() => {})
is.odd(BigInt)
is.odd(Symbol)
is.odd(NaN)
is.odd(Infinity)
is.odd(-Infinity)
is.odd(Number.POSITIVE_INFINITY)
is.odd(Number.NEGATIVE_INFINITY)
is.not.odd(1)
is.not.odd(-1)
is.not.odd(BigInt(1))
is.not.odd(1n)
is.not.odd(-31n)
is.not.odd(BigInt(2))
is.not.odd(0)
is.not.odd('undefined')
is.not.odd('null')
is.not.odd(Symbol())
is.not.odd(null)
is.not.odd(true)
is.not.odd([])
is.not.odd(false)
is.not.odd("")
is.not.odd('')
is.not.odd(``)
is.not.odd({})
is.not.odd(undefined)
is.not.odd(Function)
is.not.odd(() => {})
is.not.odd(BigInt)
is.not.odd(Symbol)
is.not.odd(NaN)
is.not.odd(Infinity)
is.not.odd(-Infinity)
is.not.odd(Number.POSITIVE_INFINITY)
is.not.odd(Number.NEGATIVE_INFINITY)