We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7f43d9 + 6f2e3e1 commit 7bbab6eCopy full SHA for 7bbab6e
README.md
@@ -187,13 +187,13 @@ Error.prepareStackTrace you might run into the exception "Traceback does not sup
187
In order to not have raven-node (and the underlying raw-stacktrace library) require
188
Traceback you can pass your own stackFunction in the options. For example:
189
190
-```javascript
191
-var client = new raven.Client('{{ SENTRY_DSN }}', { stackFunction: {{ Your stack function }}});
+```coffeescript
+client = new raven.Client('{{ SENTRY_DSN }}', { stackFunction: {{ Your stack function }}});
192
```
193
194
So for example:
195
196
-var client = new raven.Client('{{ SENTRY_DSN }}', {
+client = new raven.Client('{{ SENTRY_DSN }}', {
197
stackFunction: Error.prepareStackTrace
198
});
199
0 commit comments