We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f70264 + d92fe0e commit c8aa92bCopy full SHA for c8aa92b
debug.js
@@ -141,7 +141,7 @@ function enable(namespaces) {
141
142
for (var i = 0; i < len; i++) {
143
if (!split[i]) continue; // ignore empty strings
144
- namespaces = split[i].replace('*', '.*?');
+ namespaces = split[i].replace(/\*/g, '.*?');
145
if (namespaces[0] === '-') {
146
exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$'));
147
} else {
0 commit comments