CoffeeScript stack trace converter
npm install coffeestackModule to convert JavaScript stack traces to CoffeeScript stack traces.
``sh`
npm install coffeestack
`coffeescript
{convertStackTrace} = require 'coffeestack'
try
throw new Error('this is an error')
catch error
console.error(convertStackTrace(error.stack))
``