Node has build in assert, https://nodejs.org/api/assert.html
i want to assert the return value is valid, not these cases:
null
undefined
NaN
empty string ("")
0
false
in dev code i can just do
if (value)
but in unit test, what's the assert method ? Again i'm using the native assert from node.js
Thanks !