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