Skip to content

Commit 6436c09

Browse files
authored
fix(deps): update debug to 4.4.0 (#1329)
1 parent da3f0f5 commit 6436c09

File tree

3 files changed

+62
-43
lines changed

3 files changed

+62
-43
lines changed

dist/index.js

+57-38
Original file line numberDiff line numberDiff line change
@@ -48371,6 +48371,7 @@ function useColors() {
4837148371

4837248372
// Is webkit? http://stackoverflow.com/a/16459606/376773
4837348373
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
48374+
// eslint-disable-next-line no-return-assign
4837448375
return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
4837548376
// Is firebug? http://stackoverflow.com/a/398120/376773
4837648377
(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
@@ -48686,24 +48687,62 @@ function setup(env) {
4868648687
createDebug.names = [];
4868748688
createDebug.skips = [];
4868848689

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);
4869248695

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);
4869748701
}
48702+
}
48703+
}
4869848704

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;
4870348735
} else {
48704-
createDebug.names.push(new RegExp('^' + namespaces + '$'));
48736+
return false; // No match
4870548737
}
4870648738
}
48739+
48740+
// Handle trailing '*' in template
48741+
while (templateIndex < template.length && template[templateIndex] === '*') {
48742+
templateIndex++;
48743+
}
48744+
48745+
return templateIndex === template.length;
4870748746
}
4870848747

4870948748
/**
@@ -48714,8 +48753,8 @@ function setup(env) {
4871448753
*/
4871548754
function disable() {
4871648755
const namespaces = [
48717-
...createDebug.names.map(toNamespace),
48718-
...createDebug.skips.map(toNamespace).map(namespace => '-' + namespace)
48756+
...createDebug.names,
48757+
...createDebug.skips.map(namespace => '-' + namespace)
4871948758
].join(',');
4872048759
createDebug.enable('');
4872148760
return namespaces;
@@ -48729,41 +48768,21 @@ function setup(env) {
4872948768
* @api public
4873048769
*/
4873148770
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)) {
4874148773
return false;
4874248774
}
4874348775
}
4874448776

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)) {
4874748779
return true;
4874848780
}
4874948781
}
4875048782

4875148783
return false;
4875248784
}
4875348785

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-
4876748786
/**
4876848787
* Coerce `val`.
4876948788
*

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@actions/io": "1.1.3",
3939
"@octokit/core": "4.2.0",
4040
"argument-vector": "1.0.2",
41-
"debug": "4.3.7",
41+
"debug": "4.4.0",
4242
"find-yarn-workspace-root": "2.0.0",
4343
"got": "11.8.6",
4444
"hasha": "5.2.2",

0 commit comments

Comments
 (0)