RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/emoji-custom/client/lib/function-isSet.js

Summary

Maintainability
A
0 mins
Test Coverage
export const isSetNotNull = function (fn) {
    let value;
    try {
        value = fn();
    } catch (e) {
        value = null;
    }
    return value !== null && value !== undefined;
};