@@ -48371,6 +48371,7 @@ function useColors() {
48371
48371
48372
48372
// Is webkit? http://stackoverflow.com/a/16459606/376773
48373
48373
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
48374
+ // eslint-disable-next-line no-return-assign
48374
48375
return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
48375
48376
// Is firebug? http://stackoverflow.com/a/398120/376773
48376
48377
(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
@@ -48686,24 +48687,62 @@ function setup(env) {
48686
48687
createDebug.names = [];
48687
48688
createDebug.skips = [];
48688
48689
48689
- let i;
48690
- const split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/);
48691
- const len = split.length;
48690
+ const split = (typeof namespaces === 'string' ? namespaces : '')
48691
+ .trim()
48692
+ .replace(' ', ',')
48693
+ .split(',')
48694
+ .filter(Boolean);
48692
48695
48693
- for (i = 0; i < len; i++) {
48694
- if (!split[i]) {
48695
- // ignore empty strings
48696
- continue;
48696
+ for (const ns of split) {
48697
+ if (ns[0] === '-') {
48698
+ createDebug.skips.push(ns.slice(1));
48699
+ } else {
48700
+ createDebug.names.push(ns);
48697
48701
}
48702
+ }
48703
+ }
48698
48704
48699
- namespaces = split[i].replace(/\*/g, '.*?');
48700
-
48701
- if (namespaces[0] === '-') {
48702
- createDebug.skips.push(new RegExp('^' + namespaces.slice(1) + '$'));
48705
+ /**
48706
+ * Checks if the given string matches a namespace template, honoring
48707
+ * asterisks as wildcards.
48708
+ *
48709
+ * @param {String} search
48710
+ * @param {String} template
48711
+ * @return {Boolean}
48712
+ */
48713
+ function matchesTemplate(search, template) {
48714
+ let searchIndex = 0;
48715
+ let templateIndex = 0;
48716
+ let starIndex = -1;
48717
+ let matchIndex = 0;
48718
+
48719
+ while (searchIndex < search.length) {
48720
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === '*')) {
48721
+ // Match character or proceed with wildcard
48722
+ if (template[templateIndex] === '*') {
48723
+ starIndex = templateIndex;
48724
+ matchIndex = searchIndex;
48725
+ templateIndex++; // Skip the '*'
48726
+ } else {
48727
+ searchIndex++;
48728
+ templateIndex++;
48729
+ }
48730
+ } else if (starIndex !== -1) { // eslint-disable-line no-negated-condition
48731
+ // Backtrack to the last '*' and try to match more characters
48732
+ templateIndex = starIndex + 1;
48733
+ matchIndex++;
48734
+ searchIndex = matchIndex;
48703
48735
} else {
48704
- createDebug.names.push(new RegExp('^' + namespaces + '$'));
48736
+ return false; // No match
48705
48737
}
48706
48738
}
48739
+
48740
+ // Handle trailing '*' in template
48741
+ while (templateIndex < template.length && template[templateIndex] === '*') {
48742
+ templateIndex++;
48743
+ }
48744
+
48745
+ return templateIndex === template.length;
48707
48746
}
48708
48747
48709
48748
/**
@@ -48714,8 +48753,8 @@ function setup(env) {
48714
48753
*/
48715
48754
function disable() {
48716
48755
const namespaces = [
48717
- ...createDebug.names.map(toNamespace) ,
48718
- ...createDebug.skips.map(toNamespace).map( namespace => '-' + namespace)
48756
+ ...createDebug.names,
48757
+ ...createDebug.skips.map(namespace => '-' + namespace)
48719
48758
].join(',');
48720
48759
createDebug.enable('');
48721
48760
return namespaces;
@@ -48729,41 +48768,21 @@ function setup(env) {
48729
48768
* @api public
48730
48769
*/
48731
48770
function enabled(name) {
48732
- if (name[name.length - 1] === '*') {
48733
- return true;
48734
- }
48735
-
48736
- let i;
48737
- let len;
48738
-
48739
- for (i = 0, len = createDebug.skips.length; i < len; i++) {
48740
- if (createDebug.skips[i].test(name)) {
48771
+ for (const skip of createDebug.skips) {
48772
+ if (matchesTemplate(name, skip)) {
48741
48773
return false;
48742
48774
}
48743
48775
}
48744
48776
48745
- for (i = 0, len = createDebug.names.length; i < len; i++ ) {
48746
- if (createDebug.names[i].test (name)) {
48777
+ for (const ns of createDebug.names) {
48778
+ if (matchesTemplate (name, ns )) {
48747
48779
return true;
48748
48780
}
48749
48781
}
48750
48782
48751
48783
return false;
48752
48784
}
48753
48785
48754
- /**
48755
- * Convert regexp to namespace
48756
- *
48757
- * @param {RegExp} regxep
48758
- * @return {String} namespace
48759
- * @api private
48760
- */
48761
- function toNamespace(regexp) {
48762
- return regexp.toString()
48763
- .substring(2, regexp.toString().length - 2)
48764
- .replace(/\.\*\?$/, '*');
48765
- }
48766
-
48767
48786
/**
48768
48787
* Coerce `val`.
48769
48788
*
0 commit comments