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.
1 parent d668a23 commit ff5ce3bCopy full SHA for ff5ce3b
lib/Stats.js
@@ -285,8 +285,13 @@ class Stats {
285
text += ` ${locInfo}`;
286
}
287
288
+ const issuers = new WeakSet();
289
let current = e.origin;
290
while (current.issuer) {
291
+ if (issuers.has(current)) {
292
+ break;
293
+ }
294
+ issuers.add(current);
295
current = current.issuer;
296
text += `\n @ ${current.readableIdentifier(requestShortener)}`;
297
@@ -405,8 +410,13 @@ class Stats {
405
410
406
411
const fnModule = module => {
407
412
const path = [];
413
408
414
let current = module;
409
415
416
417
418
419
420
path.push((current = current.issuer));
421
422
path.reverse();
0 commit comments