returns false if the provided argument is undefined, otherwise true
event | object | the object that should be checked |
boolean | false if the provided argument is undefined, otherwise true |
// check if the "custom_property" property is defined for the event object
if(scheduler.defined(event.custom_property)){
// ..
};
added in version 6.0
Back to top