File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -187,13 +187,13 @@ Error.prepareStackTrace you might run into the exception "Traceback does not sup
187
187
In order to not have raven-node (and the underlying raw-stacktrace library) require
188
188
Traceback you can pass your own stackFunction in the options. For example:
189
189
190
- ``` javascript
191
- var client = new raven.Client (' {{ SENTRY_DSN }}' , { stackFunction: {{ Your stack function }}});
190
+ ``` coffeescript
191
+ client = new raven.Client (' {{ SENTRY_DSN }}' , { stackFunction : {{ Your stack function }}});
192
192
```
193
193
194
194
So for example:
195
- ```javascript
196
- var client = new raven.Client('{{ SENTRY_DSN }}' , {
195
+ ``` coffeescript
196
+ client = new raven.Client (' {{ SENTRY_DSN }}' , {
197
197
stackFunction : Error .prepareStackTrace
198
198
});
199
199
```
You can’t perform that action at this time.
0 commit comments