const isDefinedAndNotNull = function()

in platform/core/common/services/fds-storage.service.js [30:32]


const isDefinedAndNotNull = function (obj) {
    return !isUndefined(obj) && !isNull(obj);
};