/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/roles/client/debug.js
25 строк
559 B
Jan Dvorak
mimic Meteor directory
01 окт 2024, 21:04
Не верифицирован
01 окт 2024, 21:04
35464b2
Код
Авторство
О чём код?
/* global Roles, localStorage */ // ////////////////////////////////////////////////////////// // Debugging helpers // // Run this in your browser console to turn on debugging // for this package: // // localstorage.setItem('Roles.debug', true) // Roles.debug = false try { if (localStorage) { const temp = localStorage.getItem('Roles.debug') if (typeof temp !== 'undefined') { Roles.debug = !!temp } } } catch (ex) { // ignore: accessing localStorage when its disabled throws // https://github.com/meteor/meteor/issues/5759 }