davidmarkclements / cute-stack

Cute up your stack traces in Node
82 stars 6 forks source link

option to merge recursive calls #17

Open davidmarkclements opened 7 years ago

davidmarkclements commented 7 years ago

so instead of

  at fn (/some/path/to/file:2:1)
  at fn (/some/path/to/file:2:1)
  at fn (/some/path/to/file:2:1)
  at fn (/some/path/to/file:2:1)
  at foo (/some/path/to/file:1:1)

we could have

  at fn (/some/path/to/file:2:1) [x4]
  at foo (/some/path/to/file:1:1)