superdesk/superdesk-client-core

View on GitHub
scripts/core/helpers/debug-settings.tsx

Summary

Maintainability
A
0 mins
Test Coverage
interface IDebugSettings {
    logDisplayPriorities: boolean;
}

export function hasDebugSetting(option: keyof IDebugSettings) {
    const settings: IDebugSettings = JSON.parse(localStorage.getItem('debug'));

    return settings != null && settings[option] === true;
}