We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e294ac8 + 39bfbe1 commit b2388e4Copy full SHA for b2388e4
dist/index.js
@@ -9703,7 +9703,7 @@ function save(namespaces) {
9703
function load() {
9704
let r;
9705
try {
9706
- r = exports.storage.getItem('debug');
+ r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
9707
} catch (error) {
9708
// Swallow
9709
// XXX (@Qix-) should we be logging these?
@@ -9931,7 +9931,7 @@ function setup(env) {
9931
9932
const split = (typeof namespaces === 'string' ? namespaces : '')
9933
.trim()
9934
- .replace(' ', ',')
+ .replace(/\s+/g, ',')
9935
.split(',')
9936
.filter(Boolean);
9937
0 commit comments