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