Example:
notEmpty({}) // produces: false
notEmpty({I: 'am not empty'}) // produces: true
notEmpty([]) // produces: false
notEmpty([1, 2, 3]) // produces: true
notEmpty('') // produces: false
notEmpty('not empty') // produces: true
notEmpty(NaN) // produces: false
notEmpty(0) // produces: true
A value that is not empty.