1.3.1 • Published 8 years ago

stacky v1.3.1

Weekly downloads
9,331
License
BSD-3-Clause
Repository
github
Last release
8 years ago

NPM version Build Status

Stacky

Formatting

stacky.pretty(error.stack):

Example Pretty Stack

pretty Provides several options allowing you to tweak the output format to your liking.

Parsing

stacky.parse(error.stack):

[
  {
    method:   'thingCalled',
    location: 'some/file.js',
    line:     1,
    column:   2,
  }
  ...
]