from https://github.com/CesiumGS/cesium/blob/master/Source/Core/defined.js
The object.
Returns true if the object is defined and not empty string, returns false otherwise.
full('foo') // truefull('') // falsefull(undefined) // falsefull(0) // true Copy
full('foo') // truefull('') // falsefull(undefined) // falsefull(0) // true
from https://github.com/CesiumGS/cesium/blob/master/Source/Core/defined.js